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

24 行
741B

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{tikz}
  4. \usepackage{siltex}
  5. \usetikzlibrary {arrows.meta,positioning}
  6. \input{graphics/tics.tikz}
  7. \begin{document}
  8. \begin{tikzpicture}[thick, on grid, x = 2.16cm, y = 2.16cm, >=Stealth]
  9. \draw(0,-0.1) pic {rail};
  10. \draw(0,2.6) pic {rail};
  11. \draw(0,0) pic {whiteboard};
  12. \begin{scope}[shift={(1,0)}]
  13. \draw[fill=gray!60] (-0.05,-0.1) rectangle (0.05,2.6);
  14. \draw[<->] (-0.3,-0.2) -- node[midway,below]{$x$} (0.3,-0.2);
  15. \begin{scope}[shift={(0,1.7)}]
  16. \draw[fill=gray!80] (-0.12,-0.15) rectangle (0.12,0.15);
  17. \draw[<->] (0.25,-0.25) -- node[midway,right]{$y$} (0.25,0.25);
  18. \end{scope}
  19. \end{scope}
  20. \end{tikzpicture}
  21. \end{document}