-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
79 lines (57 loc) · 1.59 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
%TODO:
%bibliography!!!
\makeatletter
\renewcommand\@xipt{11}
\makeatother
\documentclass[a4paper, 11pt]{report}
\input{settings/packages}
\input{settings/style}
\input{settings/commands}
\makeindex
\input{glossaries/acronyms}
\input{glossaries/symbols}
%%% ============ Setup ============ %%%
%Compiler: Lualatex or XeLatex
%%% ============ Document ============ %%%
\pagenumbering{gobble}
\begin{document}
\renewcommand{\thefigure}{\thechapter.\arabic{figure}} %Numbering like: Figure 1.1
\renewcommand{\thetable}{\thechapter.\arabic{table}} %Numbering like: Table 1.1
\input{pages/cover}
\includepdf[pages=1]{declaration.pdf}
\pagestyle{first}
\chapter*{Abstract}
\input{chapters/00_abstract}
\newpage
\setcounter{page}{1}
\pagenumbering{Roman}
\tableofcontents
%\printnoidxglossary[type=symbols, style=symbunitlong]
\printnoidxglossary[title=Acronyms, style=acrotable]
\setlength{\cftfigindent}{0pt} % remove indentation from figures in lof
\setlength{\cfttabindent}{0pt} % remove indentation from tables in lot
\setlength\cftparskip{15pt} % distance between lines in lof and lot
\setlength{\cftbeforechapskip}{0pt}
\listoffigures
\listoftables
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
% Acknowledgements
%\chapter*{Acknowledgements}
%\thispagestyle{empty}
%\begin{center}
%I like to acknowledge ... only for my personal version!
%
%\end{center}
%\clearpage
\pagestyle{chapters}
\chapter{Introduction}
\input{chapters/01_section}
\bibliographystyle{plainnat}
\pagestyle{bib}
\bibliography{chapters/bibliography}
\appendix
\chapter{Appendix}
\input{chapters/appendix}
\end{document}