Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. documentclass[tikz, margin=3mm]{standalone}
  2. usepackage{forest}
  3. usetikzlibrary{shapes.geometric, }
  4.  
  5. begin{document}
  6. forestset{
  7. rect/.style = {rectangle split,
  8. rectangle split horizontal,
  9. rectangle split parts=4,
  10. draw},
  11. }% end of forestset
  12.  
  13. begin{forest}
  14. for tree={
  15. rect,
  16. %
  17. }
  18. [nodepart{one} A
  19. % nodepart{two} B,
  20. % nodepart{three} C,
  21. nodepart{four} $D$
  22. ]
  23. end{forest}
  24. end{document}
  25.  
  26. ! Undefined control sequence.
  27. pgfkeyscurrentkey ->nodepart
  28. {four} $D$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement