您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
986B

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{siltex}
  5. \usetikzlibrary {calc,arrows.meta,positioning,patterns}
  6. \input{graphics/tics.tikz}
  7. \begin{document}
  8. \begin{tikzpicture}[thick, on grid, x = 1.16cm, y = 1.16cm, >=Stealth]
  9. \clip[draw=none] (-0.7,-0.9) rectangle (2.12,2.2);
  10. \draw(-2,-2.75) pic {whiteboard};
  11. \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;
  12. \draw[fill=gray] (0,0) circle (0.2);
  13. \begin{scope}[rotate=60,shift={(0.5,0)}]
  14. \draw[fill=gray!60] (-1,0.05) rectangle (1.5,-0.05);
  15. \draw[<->] (0.2,0.15) -- node[midway,above left]{$r$} (0.8,0.15);
  16. \begin{scope}[shift={(-0.3,0)}]
  17. \draw[<->] ({0.8*cos(160)},{0.8*sin(160)}) arc[start angle = 160, end angle= 200, radius = 0.8] node[midway, below left]{$\Phi$};
  18. \end{scope}
  19. \end{scope}
  20. \end{tikzpicture}
  21. \end{document}