topology-paths.tex 669 B

1234567891011121314151617
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{pgfplots}
  3. \usepackage{tikz}
  4. \begin{document}
  5. \begin{tikzpicture}
  6. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  7. \node (a)[point,label=180:$a$] at (0,0) {};
  8. \node (b)[point,label=0:$b$] at (3, 0) {};
  9. \draw [rounded corners,->, thick, red] (a) .. controls (0.5,2) .. (2,1) .. controls (2,0.5) .. (a);
  10. \draw [rounded corners,->, thick, blue] (a) .. controls (1,-1) .. (2,-0.5) .. controls (2.2,-1) .. (b);
  11. \node at (1,1.2) [red] {$\gamma$};
  12. \node at (2.25,-0.6) [blue] {$\delta$};
  13. \end{tikzpicture}
  14. \end{document}