-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
74 lines (58 loc) · 1.67 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
%------------------------------------------------
% Main LaTeX file for the Master Thesis report
%
% Author: Jérémy Singy
%------------------------------------------------
\input{preamble}
% General information
\setdoctitle{Cracked records with 3D/IRENE}
\setauthor{Jérémy}{Singy}
% Import external configurations
\input{config/headers}
\input{config/hyperref}
\input{config/listings}
% Import glossary entries
\input{content/glossary}
\begin{document}
% Autoref config
\renewcommand{\chapterautorefname}{Chapter}
\renewcommand{\sectionautorefname}{Section}
\renewcommand{\subsectionautorefname}{Subsection}
\renewcommand{\subsubsectionautorefname}{Subsection}
%\pagenumbering{alph} % Avoid the problem with glossary hyperrefs
% Title page is followed by a blank page
\newgeometry{top=2cm, bottom=2cm, left=2cm, right=2cm}
\input{title}
\maketitle
\restoregeometry
%\cleardoublepageoneside
\cleardoublepage
\frontmatterstyle
\input{second-page}
\cleardoublepage
% Include the abstract
\include{content/abstract}
\cleardoublepage
% Table of contents
\setlength{\headheight}{44.5pt}
\tableofcontents
% Front-matter (acknowledgement and lists)
\include{content/frontmatter}
% Include the actual report content
\cleardoublepage
\maindocstyle
\include{content/chapters}
% Glossary and bibliography
\cleardoublepage
\printglossaries
\cleardoublepage
%\nocite{*} % to print out not cited bibliography as well
\printbibliography[heading=bibintoc]
% Include the appendices
\appendix
\renewcommand{\thesection}{\arabic{section}}
\include{appendices/folder-structure}
\include{appendices/user-man-interactive}
\include{appendices/user-man-automatic}
\include{appendices/requirements}
\end{document}