-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
67 lines (51 loc) · 1.75 KB
/
main.tex
File metadata and controls
67 lines (51 loc) · 1.75 KB
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
\documentclass[12pt, a4paper, oneside]{scrreprt}
% Load shared setup (layout, fonts, title page macro, biblatex config, ...)
\usepackage{hcw_bachelor_setup}
% ---------------- Acronyms / Glossaries ----------------
\usepackage[acronym,nonumberlist]{glossaries}
\makenoidxglossaries
\input{parts/acronyms} % ONLY definitions (\newacronym...) in this file
% Make the glossary heading NOT behave like a chapter (prevents blank page)
\renewcommand*{\glossarysection}[2][]{\section*{#2}}
% ---------------- Bibliography database ----------------
\addbibresource{references.bib}
\begin{document}
% -------- Title page --------
\input{parts/titlepage}
% -------- Front matter (Roman numbering) --------
\cleardoublepage
\pagenumbering{Roman}
\setcounter{page}{1}
\input{parts/abstract}
\input{parts/abstract_de.tex}
% One list (acronyms). This file should ONLY print the glossary:
% \glsaddall[types=\acronymtype] (optional)
% \printnoidxglossary[type=\acronymtype,title={List of Acronyms}]
\input{parts/abbrevations}
% Table of contents
\input{parts/table_of_contents}
% Lists
\input{parts/list_of_figures}
% -------- Main matter (Arabic numbering) --------
\cleardoublepage
\pagenumbering{arabic}
\setcounter{page}{1}
% Optional: reset figure/table counters (only if your template requires it)
\setcounter{figure}{0}
\setcounter{table}{0}
\input{parts/introduction}
\input{parts/related_work}
\input{parts/voip_observability}
\input{parts/system_components}
\input{parts/technology_stacks}
\input{parts/platform_design}
\input{parts/implementation_and_laboratory_setup}
\input{parts/results}
\input{parts/discussion}
\input{parts/future_work}
% -------- Back matter --------
\cleardoublepage
\input{parts/bibliography}
\cleardoublepage
\input{parts/overview_ai}
\end{document}