Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tikz}
  3. usetikzlibrary{automata,arrows,calc,positioning}
  4.  
  5. begin{document}
  6.  
  7. begin{figure}[H]
  8. centering
  9. begin{tikzpicture}[>=stealth',shorten >=1pt,auto,node distance=2.5cm,scale=1, transform shape,align=center,minimum size=3em]
  10.  
  11. node[state] (MP) {more \points};
  12. node[state] (BP) [right=of MP] {better \pointers};
  13. node[state] (GS) [below=of $(MP)!0.5!(BP)$] {game \signal};
  14. node[state] (SO) [below left=of GS] {stressed \out};
  15. node[state] (CO) [below right=of GS] {contribute};
  16. node[state] (GT) [below=of $(SO)!0.5!(CO)$] {great \time};
  17.  
  18. path[->] (MP) edge node {} (GS)
  19. (BP) edge node {} (GS)
  20. (GS) edge node {} (SO)
  21. (GS) edge node {} (CO)
  22. (SO) edge node {} (GT)
  23. (CO) edge node {} (GT);
  24.  
  25. end{tikzpicture}
  26. end{figure}
  27.  
  28. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement