topology-triangle-on-line.tex 845 B

1234567891011121314151617181920212223242526272829
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{tikz}
  3. \begin{document}
  4. \begin{tikzpicture}
  5. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  6. \node (a)[point] at (0,0) {};
  7. \node (b)[point] at (2.5,0) {};
  8. \node (c)[point] at (2,1) {};
  9. \begin{scope}[xshift=4.5cm, yshift=0.5cm]
  10. \node (d)[point] at (0,0) {};
  11. \node (e)[point] at (2,0) {};
  12. \end{scope}
  13. \begin{scope}[xshift=1.5cm,yshift=0.6cm,rotate=-55]
  14. \draw[->] (0,-0.1) -- (0.4,-0.1);
  15. \draw[->] (0, 0.0) -- (0.5, 0.0);
  16. \draw[->] (0, 0.1) -- (0.6, 0.1);
  17. \end{scope}
  18. \draw (a.center) -- (b.center) -- (c.center) -- cycle;
  19. \draw (d.center) -- (e.center);
  20. \draw[thick,->] (3,0.5) -- node[above] {$\varphi$} (4,0.5);
  21. \end{tikzpicture}
  22. \end{document}