forked from V3lop5/fh-aachen-latex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.tex
49 lines (34 loc) · 1019 Bytes
/
master.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
% !TeX root = ./master.tex
\documentclass[a4paper,11pt,twoside,openright]{scrreprt}
% Include everything from Package
\usepackage{configuration/Packages}
\usepackage{configuration/Constants}
\usepackage{configuration/Style}
\usepackage{configuration/Commands}
% Include Bib, acronyms, glossary
\addbibresource{content/references.bib}
\include{content/Acronyms}
\include{content/Glossary}
\begin{document}
% Prefix
\include{content/prefix/00-TitlePage}
\include{content/prefix/01-Erklaerung}
\pagenumbering{Roman}
\include{content/prefix/02-Abstract}
\include{content/prefix/03-Contents}
\setcounter{page}{0}
\pagenumbering{arabic}
% Chapters
\include{content/chapters/01-Introduction}
\include{content/chapters/02-Example}
\include{content/chapters/03-Conclusion}
% INSERT more chapters here
% Clear Page + null rein oder raus - damit die letzte Seite bündig ist.
\clearpage
\null
\clearpage
\appendix
% INSERT Appendix here
\chapter{Quellenverzeichnis}
\printbibliography[heading=none]
\end{document}