-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
54 lines (45 loc) · 1.79 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
%Title of your master thesis----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[12pt,oneside,final,a4paper]{report}
\usepackage{generators/imports}
% \include{generators/glossary}
\begin{document}
\include{generators/frontpage} % This is the titlepage
\include{generators/abstract}
\include{generators/tableOfContentsAndListings}
\pagenumbering{arabic}
\setcounter{page}{1}
\setlength{\parskip}{0.5cm plus4mm minus3mm}
\include{chapter/1-background}
\include{chapter/2-case}
\include{chapter/3-approach-design-choices}
\include{chapter/4-implementation}
\include{chapter/5-examples-results}
\include{chapter/6-evaluation}
\include{chapter/7-related-future-work}
\include{chapter/8-conclusion}
% Include more chapters as required.
%%=========================================
% Alternative 1 of printing glossaries & acronymes
%\renewcommand{\glossarypreamble}{\footnotesize}
%\printglossary[style=super, type=\glsdefaulttype] \let\cleardoublepage\clearpage
%\printglossary[style=super, type=\acronymtype]
%Alternative 2
%Simplified way of printing glossaries, slower than alt 1, but has better compatibility
% \printnoidxglossaries
% Include more appendices as required.
%%=========================================
\clearpage
\DeclareRobustCommand{\VAN}[3]{#3}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{generators/myplainnat}
\bibliography{generators/refs}
\appendix
\titleformat{\chapter}[display]
{\normalfont\large\bfseries}% <- font for label "Appendix A", default \huge
{\chaptertitlename\ \thechapter}
{20pt}
{\large}% <- font for title, default \Huge
\include{generators/appendix-a}
\end{document}