-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
99 lines (75 loc) · 1.78 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
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
95
96
97
98
99
\documentclass[11pt, a4paper]{book}
\input{packages.tex}
\input{libraries/acronyms_glossary.tex}
\begin{document}
% turns off page numbering until re-activated
\pagenumbering{gobble}
%
% Titlepage
%
\input{1_frontmatter/titlepage.tex}
%
% Confidentiality
%
\input{1_frontmatter/confidentiality.tex}
%
% Declaration
%
\input{1_frontmatter/declaration.tex}
%
% Acknowledgements
%
\input{1_frontmatter/acknowledgements.tex}
%
% Table of Contents
%
\input{1_frontmatter/toc.tex}
%
% Configuration for Header and Footer
%
\pagestyle{fancy}
\setlength{\headheight}{14pt} % fix warning for varying headheights in document
\fancyhead{} % clear all header fields
\fancyhead[LO]{\textsl{\rightmark}} % section title (odd-left)
\fancyhead[RE]{\textsl{\leftmark}} % chapter title (even-right)
\fancyhead[RO,LE]{\thepage} % page number next to titles (odd & even)
\fancyfoot{} % clear all footer fields
\renewcommand{\headrulewidth}{0.4pt} % Line strength in header % \renewcommand{\footrulewidth}{0.4pt} % Line strength in footer
%
% Acronyms & Glossaries
%
\input{1_frontmatter/acronyms_glossary.tex}
%
% Abstract
%
\input{1_frontmatter/abstract.tex}
% reset to arabic page numbering for chapters (default)
\pagenumbering{arabic}
\setcounter{page}{1}
%
% Chapters
%
\input{2_bodymatter/ch1.tex}
\input{2_bodymatter/ch2.tex}
\cleardoublepage
% restore roman page numbering for secondary pages
\pagenumbering{roman}
\setcounter{page}{42} % WORKAROUND: update number manually depending on the glossary length!
%
% List of Figures
%
\input{3_backmatter/figures.tex}
%
% List of Tables
%
% \input{3_backmatter/tables.tex}
%
% List of Listings
%
\input{3_backmatter/listings.tex}
%
% Bibliography & Sources
%
\input{3_backmatter/bibliography_sources.tex}
\end{document}
% LaTeX template made by github.com/kelzenberg