From cabaf85692980d2c76c210b16e8aa4c6e154bbd2 Mon Sep 17 00:00:00 2001 From: acereca Date: Thu, 5 Apr 2018 10:41:17 +0200 Subject: [PATCH] add templates and preambles --- preamble.tex | 3 +++ templates/part.tex | 3 +++ templates/tikz.tex | 8 ++++++++ tikz/tikzpreamble.tex | 2 ++ 4 files changed, 16 insertions(+) create mode 100644 preamble.tex create mode 100644 templates/part.tex create mode 100644 templates/tikz.tex create mode 100644 tikz/tikzpreamble.tex 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}