mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
15 lines
410 B
TeX
15 lines
410 B
TeX
\documentclass[varwidth=true, border=2pt]{standalone}
|
|
\usepackage{tikz}
|
|
\usepackage{pgfplots}
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}[thick]
|
|
\draw (-1,-1) -- (1,-1) -- (1,1) -- (-1,1) -- cycle;
|
|
\draw (0cm,0cm) circle(0.9cm);
|
|
|
|
\begin{scope}[scale=1.7]
|
|
\draw (-1,-1) -- (1,-1) -- (1,1) -- (-1,1) -- cycle;
|
|
\draw (0cm,0cm) circle(0.9cm);
|
|
\end{scope}
|
|
\end{tikzpicture}
|
|
\end{document}
|