Skip to content

Instantly share code, notes, and snippets.

@nbro
Created October 21, 2018 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbro/51d395b806dfd2f56b50f915aae16cda to your computer and use it in GitHub Desktop.
Save nbro/51d395b806dfd2f56b50f915aae16cda to your computer and use it in GitHub Desktop.
Main file which imports the template in the file game-tree.tex
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usepackage[margin=0.6in]{geometry}
% Define a few styles for the nodes
\tikzset{
tree_node/.style = {align=center, inner sep=0pt, text centered, font=\sffamily},
square_node/.style = {tree_node, rectangle, draw=black, minimum width=1.5em, minimum height=1.5em, very thick},
circle_node/.style = {tree_node, circle, black, draw=black, text width=1.5em, very thick},
}
\begin{document}
\input{game-tree}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment