Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. documentclass[tikz]{standalone}
  2.  
  3. usetikzlibrary{graphdrawing}
  4. usegdlibrary{trees}
  5.  
  6. begin{document}
  7. begin{tikzpicture}[tree layout,nodes={text depth=0.3ex}]
  8. node {aligned?}
  9. child {%
  10. node {yes}
  11. }
  12. child {%
  13. node {no}
  14. };
  15. end{tikzpicture}
  16. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement