topology-graph-simple.tex 474 B

1234567891011121314
  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 (1,0) {};
  8. \path (a.center) edge [bend left] (b.center);
  9. \path (a.center) edge (b.center);
  10. \path (a.center) edge [bend right] (b.center);
  11. \end{tikzpicture}
  12. \end{document}