Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. documentclass{standalone}
  2.  
  3. usepackage{pgfplots}
  4. pgfplotsset{compat = newest}
  5. usetikzlibrary{arrows.meta}
  6.  
  7. tikzset{%
  8. state/.style = {%
  9. draw, circle, minimum size = 4, inner sep = 0, fill = black
  10. }%
  11. }%
  12.  
  13. tikzset{%
  14. dashedarrow/.style = {%
  15. draw, densely dashed, > = {Latex[width = 1.7mm, length = 2.2mm, open, fill = white]}, ->
  16. }%
  17. }%
  18.  
  19. begin{document}%
  20. begin{tikzpicture}%
  21.  
  22. node[state] (0) at (0,0) {};
  23. node[state] (1) at (1,0) {};
  24. node[state] (2) at (0,1) {};
  25.  
  26. path[dashedarrow] (1) edge[bend left = 20] (2);
  27. path[dashedarrow] (2) edge[bend left = 20] (0);
  28.  
  29. end{tikzpicture}%
  30. end{document}%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement