diff --git a/preamble.tex b/preamble.tex new file mode 100644 index 0000000..8f1ecea --- /dev/null +++ b/preamble.tex @@ -0,0 +1,3 @@ +%! TEX root = ./thesis.tex + +\input{tikz/tikzpreamble.tex} diff --git a/templates/part.tex b/templates/part.tex new file mode 100644 index 0000000..b71f899 --- /dev/null +++ b/templates/part.tex @@ -0,0 +1,3 @@ +%! TEX root = ../thesis.tex + +\section{} diff --git a/templates/tikz.tex b/templates/tikz.tex new file mode 100644 index 0000000..b2afc33 --- /dev/null +++ b/templates/tikz.tex @@ -0,0 +1,8 @@ +\documentclass[]{standalone} +\input{tikzpreamble.tex} + +\begin{document} +\begin{tikzpicture} + % insert tikz +\end{tikzpicture} +\end{document} diff --git a/tikz/tikzpreamble.tex b/tikz/tikzpreamble.tex new file mode 100644 index 0000000..0834255 --- /dev/null +++ b/tikz/tikzpreamble.tex @@ -0,0 +1,2 @@ +\usepackage{tikz} +\usetikzlibrary{positioning, shapes, arrows}