Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 lines
1.0KB

  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 = 1.16cm, y = 1.16cm, >=Stealth]
  11. \clip[draw=none] (-0.7,-0.9) rectangle (2.12,2.2);
  12. \draw(-2,-2.75) pic {whiteboard};
  13. \filldraw[pattern = north west lines, pattern color=gray!60,draw=gray!60] (-2.1,0) -- (2.1,0) arc[start angle = 0, end angle = 180, radius=2.1] -- cycle;
  14. \draw[fill=gray] (0,0) circle (0.2);
  15. \begin{scope}[rotate=60,shift={(0.5,0)}]
  16. \draw[fill=gray!60] (-1,0.05) rectangle (1.5,-0.05);
  17. \draw[<->] (0.2,0.15) -- node[midway,above left]{$r$} (0.8,0.15);
  18. \begin{scope}[shift={(-0.3,0)}]
  19. \draw[<->] ({0.8*cos(160)},{0.8*sin(160)}) arc[start angle = 160, end angle= 200, radius = 0.8] node[midway, below left]{$\Phi$};
  20. \end{scope}
  21. \end{scope}
  22. \end{tikzpicture}
  23. \end{document}