-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocument.tex
94 lines (66 loc) · 1.6 KB
/
document.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
\documentclass[
pdftex,
oneside,
12pt,
parskip=half,
headheight = 12pt,
headsepline,
footheight = 16pt,
footsepline,
DIV=calc,
BCOR=8mm,
headinclude=false,
footinclude=false,
listof=totoc,
toc=bibliography
]{scrreprt}
\usepackage{subfiles}
\input{config/packages}
\usepackage[ngerman]{babel}
\input{config/information}
\input{config/header}
\makeglossaries
\input{general/acronyms}
\input{general/glossary}
\def\biblio{\printbibliography}
\begin{document}
\def\biblio{}
\newcounter{save}
\hypersetup{pageanchor=false}
\input{general/title_page.tex}
\hypersetup{pageanchor=true}
\newpage
\pagenumbering{Roman}
% Hint: To be removed if no lock flag is needed.
\input{shared/lock_flag}
\newpage
\input{shared/declaration_of_independence}
\newpage
\input{general/abstract}
\newpage
\RedeclareSectionCommand[beforeskip=20pt]{chapter}
\pdfbookmark{Inhaltsverzeichnis}{toc}\tableofcontents
\cleardoublepage
\setcounter{save}{\arabic{page}}
\pagenumbering{arabic}
\pagestyle{headings}
\subfile{sections/01-introduction}
\cleardoublepage
\pagenumbering{Roman}
\setcounter{page}{\thesave}
\addtocontents{toc}{\protect\renewcommand*{\protect\@pnumwidth}{3em}}
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\lstlistoflistings
\cleardoublepage
\printglossary[type=\acronymtype,style=super,title=Akronyme]
\cleardoublepage
\printglossary[style=altlist,title=Glossar]
\cleardoublepage
\printbibliography
\cleardoublepage
\input{general/appendix}
\cleardoublepage
\end{document}