2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/quadrat-in-kreis-in-dots/quadrat-in-kreis-in-dots.tex
2013-10-27 11:16:34 +01:00

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}