You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
220 B

1 year ago
  1. \documentclass{standalone}
  2. \usepackage{tikz}
  3. \usetikzlibrary{graphs, graphdrawing, graphdrawing.trees}
  4. \begin{document}
  5. \begin{tikzpicture}
  6. \graph[tree layout]{
  7. A -> {B , C}
  8. };
  9. \end{tikzpicture}
  10. \end{document}