quadrat-in-kreis-in-dots.tex 410 B

12345678910111213141516
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tikz}
  3. \usepackage{pgfplots}
  4. \begin{document}
  5. \begin{tikzpicture}[thick]
  6. \draw (-1,-1) -- (1,-1) -- (1,1) -- (-1,1) -- cycle;
  7. \draw (0cm,0cm) circle(0.9cm);
  8. \begin{scope}[scale=1.7]
  9. \draw (-1,-1) -- (1,-1) -- (1,1) -- (-1,1) -- cycle;
  10. \draw (0cm,0cm) circle(0.9cm);
  11. \end{scope}
  12. \end{tikzpicture}
  13. \end{document}