summaryrefslogtreecommitdiff
path: root/document.tex
diff options
context:
space:
mode:
Diffstat (limited to 'document.tex')
-rw-r--r--document.tex40
1 files changed, 40 insertions, 0 deletions
diff --git a/document.tex b/document.tex
new file mode 100644
index 0000000..f160700
--- /dev/null
+++ b/document.tex
@@ -0,0 +1,40 @@
+\documentclass[
+ a4paper,
+ oneside,
+ 11pt,
+ twocolumn
+]{scrreprt}
+\usepackage[utf8]{inputenc}
+\usepackage[ngerman]{babel}
+
+\newcommand{\undefinedpagestyle}{} % ??? TODO dirty hack für broken incgraph build
+
+\newif\ifdraft
+\drafttrue % Sagt aus, dass dieses Dokument ein Entwurf ist. Somit wird todonotes aktiviert. Zum deaktivieren diese Zeile auskommentieren oder auf \draftfalse setzen.
+
+\author{Vorname Nachname}
+\title{Notes}
+\date{\today}
+
+\input{layout/header}
+
+\begin{document}
+ \listoftodos
+ \pagestyle{empty}
+ \input{layout/deckblatt}
+
+ \tableofcontents
+
+ \pagestyle{scrheadings}
+ \setcounter{page}{1}
+ \input{chapters/01_introduction}
+ \pagestyle{empty}
+
+ \printbibliography
+ \listoffigures
+ \clearpage
+ \input{layout/erklaerung}
+
+ \clearpage
+ \appendix
+\end{document}