Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

25 Zeilen
960B

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{siltex}
  5. \usetikzlibrary {calc,arrows.meta,positioning,patterns}
  6. \input{graphics/tics.tikz}
  7. % Compliant PDF
  8. \usepackage[a-3u]{pdfx}
  9. \begin{document}
  10. \begin{tikzpicture}[thick, on grid, x = 2.16cm, y = 2.16cm, >=Stealth]
  11. \draw(-2,-2.75) pic {whiteboard};
  12. %\filldraw[pattern = north west lines, pattern color=gray!60,draw=none] (-2,0) -- (2,0) arc[start angle = 0, end angle = 180, radius=2] -- cycle;
  13. \draw[fill=gray] (0,0) circle (0.2);
  14. \begin{scope}[rotate=45,shift={(-1,0)}]
  15. \draw[fill=gray!60] (-1,0.05) rectangle (1.5,-0.05);
  16. \draw[<->] (-0.2,0.15) -- node[midway,above]{$r$} (-0.8,0.15);
  17. \begin{scope}[shift={(-0.3,0)}]
  18. \draw[<->] ({0.8*cos(160)},{0.8*sin(160)}) arc[start angle = 160, end angle= 200, radius = 0.8] node[midway, below left]{$\Phi$};
  19. \end{scope}
  20. \end{scope}
  21. \end{tikzpicture}
  22. \end{document}