update skeleton to radboud standards thanks to klinik/stutterheims template
[thesis-skel.git] / thesis.tex
1 \documentclass[twopage,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
18 % Table of contents
19 \tableofcontents
20
21 % Reset glossary and thus the acronyms
22 \glsresetall{}
23
24 % The actual document
25 \mainmatter{}
26
27 \chapter{Example}%
28 \label{chp:example}
29 \input{example}
30
31 % Start appendix
32 \appendix%
33 \label{chp:appendix}
34 \chapter{An Appendix}%
35 \label{chp:an_appendix}
36 \input{an_appendix.tex}
37
38 \backmatter%
39 % Bibliography
40 \phantomsection{}%
41 \label{chp:bibliography}
42 \addcontentsline{toc}{chapter}{Bibliography}
43 \bibliographystyle{plain}
44 \bibliography{thesis}
45
46 %% Lists of
47 %\cleardoublepage{}
48 %\phantomsection{}%
49 %\label{chp:listsof...}
50 %\addcontentsline{toc}{chapter}{Lists of \ldots}
51 %\begingroup
52 %\let\clearpage\relax
53 %\let\cleardoublepage\relax
54 %\listoffigures%
55 %\listoftables%
56 %\listofalgorithms%
57 %\lstlistoflistings%
58 %\endgroup
59
60 % Abstract
61 \chapter{Summary}%
62 \label{chp:summary}
63 \begin{center}
64 \noindent\input{summary}
65 \end{center}
66
67 % Samenvatting
68 \chapter{Samenvatting}%
69 \label{chp:samenvatting}
70 \begin{center}
71 \noindent\input{samenvatting}
72 \end{center}
73
74 % Acknowledgements
75 \chapter{Acknowledgements}%
76 \label{chp:acknowledgements}
77 \begin{center}
78 \noindent\input{acknowledgements}
79 \end{center}
80
81 % Curriculum Vitae
82 \chapter{Curriculum Vit\ae}%
83 \label{chp:curriculum_vitae}
84 \input{curriculum_vitae}
85
86 % Glossary
87 \addcontentsline{toc}{chapter}{Glossary}%
88 \label{chp:glossaries}
89 \printglossaries%
90
91 % Index
92 \addcontentsline{toc}{chapter}{Index}%
93 \label{chp:index}
94 \printindex
95
96 \end{document}