-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.tex
60 lines (52 loc) · 1.63 KB
/
Main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
% !TeX root = ./Main.tex
% !TeX engine = xetex
% !BIB program = bibtex
\documentclass[oneside, openbib, parskip = full-]{scrartcl}
% \includeonly{ % #INFO: wenn man nur bestimmte includes nutzen will
% content/Anhang_KIS
% }
\input{documentkeys} % #INFO: allgemeine Werte für die Arbeit
\input{configuration} % #INFO: Einstellungen
\input{content/glossary_entries} % #INFO: laden aller Glossary und Abkürzungen
\begin{document}
%%%
%%% Vorbau
%%%
\pagenumbering{Roman}
\include{general/Title}
\include{general/Selbstaendigkeitserklaerung}
\include{content/Abstract}
\include{general/tableofcontent}
\clearpage
%%%
%%% Inhalt
%%%
\pagenumbering{arabic}
% #INFO: für Inhalt normalerweise \input. \include with care, kann Verweise und so schwieriger machen
% ich nutze trotzdem include damit ich mit \includeonly{} zum test bauen kleiner PDFs erstellen lassen kann
%\input{content/<Name des Kapitels>}
%\include{content/<filename>}
\include{content/01_Einleitung/Einleitung}
\include{content/02_Grundlagen/00_Grundlagen}
\include{content/03_Datensatz/00_Datensatz}
\include{content/04_ModellImplementierung/00_ModellImplementierung}
\include{content/06_ErgebnisAusblick/00_ErgebnisAusblick}
%%%
%%% Nachbau
%%%
\addsec{Literatur}
\renewcommand{\section}[2]{}
\bibliography{citation/quellen}
\clearpage
% Anhänge
\appendix
\addappheadtotoc
\appendixpage
\begin{appendices}
\include{content/99_Anhang/Database_DockerCompose.tex}
\include{content/99_Anhang/Datensatz_Diagramme.tex}
\include{content/99_Anhang/ToPostGIS.tex}
\include{content/99_Anhang/QgisRasterisierung.tex}
\include{content/99_Anhang/ModellDefTF.tex}
\end{appendices}
\end{document}