rdm
[thesis-skel.git] / thesis.tex
1 \documentclass[10pt]{book}
2
3 \input{preamble}
4
5 % Document info
6 \title{Some title}
7 \author{Some author}
8
9 % If you want to fix the date: \formatdate{10}{7}{2017}}
10 \date{\today}
11
12 \begin{document}
13 \frontmatter{}
14
15 %Titlepage
16 \input{titlepage}
17 \newpage%
18 \input{motto}
19
20 % Table of contents
21 \tableofcontents
22 \newpage%
23
24 \input{dedication}
25
26 % Reset glossary and thus the acronyms
27 \glsresetall{}
28
29 % The actual document
30 \mainmatter{}
31
32 \chapter{Example}%
33 \label{chp:example}
34 \input{example}
35
36 % Start appendix
37 \appendix%
38 \label{chp:appendix}
39 \chapter{An Appendix}%
40 \label{chp:an_appendix}
41 \input{an_appendix.tex}
42
43 \backmatter%
44 % Bibliography
45 \phantomsection{}%
46 \label{chp:bibliography}
47 \addcontentsline{toc}{chapter}{Bibliography}
48 \bibliographystyle{plain}
49 \bibliography{thesis}
50
51 %% Lists of
52 %\cleardoublepage{}
53 %\phantomsection{}%
54 %\label{chp:listsof...}
55 %\addcontentsline{toc}{chapter}{Lists of \ldots}
56 %\begingroup
57 %\let\clearpage\relax
58 %\let\cleardoublepage\relax
59 %\listoffigures%
60 %\listoftables%
61 %\listofalgorithms%
62 %\lstlistoflistings%
63 %\endgroup
64
65 % Abstract
66 \chapter{Summary}%
67 \label{chp:summary}
68 \begin{center}
69 \noindent\input{summary}
70 \end{center}
71
72 % Samenvatting
73 \chapter{Samenvatting}%
74 \label{chp:samenvatting}
75 \begin{center}
76 \noindent\input{samenvatting}
77 \end{center}
78
79 % Acknowledgements
80 \chapter{Acknowledgements}%
81 \label{chp:acknowledgements}
82 \begin{center}
83 \noindent\input{acknowledgements}
84 \end{center}
85
86 \chapter{Research Data Management}%
87 \label{chp:research_data_management}
88 \input{research_data_management}
89
90 % Curriculum Vitae
91 \chapter{Curriculum Vit\ae}%
92 \label{chp:curriculum_vitae}
93 \input{curriculum_vitae}
94
95 % Glossary
96 \addcontentsline{toc}{chapter}{Glossary}%
97 \label{chp:glossaries}
98 \printglossaries%
99
100 % Index
101 \addcontentsline{toc}{chapter}{Index}%
102 \label{chp:index}
103 \printindex
104
105 \end{document}