add templates and preambles

This commit is contained in:
acereca 2018-04-05 10:41:17 +02:00
parent ea00b8f75e
commit cabaf85692
4 changed files with 16 additions and 0 deletions

3
preamble.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ./thesis.tex
\input{tikz/tikzpreamble.tex}

3
templates/part.tex Normal file
View File

@ -0,0 +1,3 @@
%! TEX root = ../thesis.tex
\section{}

8
templates/tikz.tex Normal file
View File

@ -0,0 +1,8 @@
\documentclass[]{standalone}
\input{tikzpreamble.tex}
\begin{document}
\begin{tikzpicture}
% insert tikz
\end{tikzpicture}
\end{document}

2
tikz/tikzpreamble.tex Normal file
View File

@ -0,0 +1,2 @@
\usepackage{tikz}
\usetikzlibrary{positioning, shapes, arrows}