Guest User

Untitled

a guest
Nov 12th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. documentclass[11pt,titlepage,oneside,openany]{book}
  2. usepackage{forest}
  3. begin{document}
  4. begin{forest}
  5. [A, name=a[B][C[D][E ,name=e[F][G]]]]
  6. end{forest}
  7. end{document}
  8.  
  9. documentclass[11pt,titlepage,oneside,openany]{book}
  10. usepackage{forest}
  11. begin{document}
  12. begin{forest}
  13. [A,name=a
  14. [B]
  15. [C
  16. [D]
  17. [E ,name=e
  18. [F]
  19. [G]
  20. ]
  21. ]
  22. ]
  23. draw[thick,-latex] ([xshift=1cm]a.north east) -- ([xshift=1cm]e.south east)
  24. node[midway,sloped,above]{text on arrow};
  25. end{forest}
  26. end{document}
Add Comment
Please, Sign In to add comment