Created
March 23, 2017 09:54
-
-
Save dfbarrero/24b5ae208e8c5627aab073a99d1e1cfa to your computer and use it in GitHub Desktop.
Tree figure with LaTeX/Tikz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{tikzpicture}[level distance=1.3cm, | |
| level 1/.style={sibling distance=3cm, level distance=1cm}, | |
| level 2/.style={sibling distance=1.5cm, level distance=0.8cm}] | |
| \node {Root} | |
| child {node {Child} | |
| child {node {Node}} | |
| child {node {Node}} | |
| } | |
| child {node {Level 2} | |
| child {node {Level 3}} | |
| child {node {Level 3}} | |
| }; | |
| \end{tikzpicture} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment