Skip to content

Instantly share code, notes, and snippets.

@dfbarrero
Created March 23, 2017 09:54
Show Gist options
  • Select an option

  • Save dfbarrero/24b5ae208e8c5627aab073a99d1e1cfa to your computer and use it in GitHub Desktop.

Select an option

Save dfbarrero/24b5ae208e8c5627aab073a99d1e1cfa to your computer and use it in GitHub Desktop.
Tree figure with LaTeX/Tikz
\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