use latexmk,
[thesis-skel.git] / thesis.tex
1 \documentclass[twoside,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 %\addtitlethumb{Frontmatter}{}{white}{gray}{pagesLTS.0}
15
16 %Titlepage
17 \input{titlepage}
18 \newpage%
19 \input{motto}
20
21 % Table of contents
22 \tableofcontents
23 \newpage%
24
25 \input{dedication}
26
27 % Reset glossary and thus the acronyms
28 \glsresetall{}
29
30 % The actual document
31 \mainmatter%
32 \addthumb{Chapters}{\arabic{chapter}}{white}{gray}
33
34 \chapter{Example}%
35 \label{chp:example}
36 \input{example}
37
38 % Start appendix
39 \appendix%
40 \label{chp:appendix}
41 \addthumb{Appendices}{\Alph{chapter}}{white}{gray}
42
43 \chapter{An Appendix}%
44 \label{chp:an_appendix}
45 \input{an_appendix}
46
47 \backmatter%
48 \stopthumb% chktex 9
49
50 % Bibliography
51 \phantomsection{}%
52 \label{chp:bibliography}
53 \addcontentsline{toc}{chapter}{Bibliography}
54 \bibliographystyle{plain}
55 \bibliography{thesis}
56
57 %% Lists of
58 %\cleardoublepage{}
59 %\phantomsection{}%
60 %\label{chp:listsof...}
61 %\addcontentsline{toc}{chapter}{Lists of \ldots}
62 %\begingroup
63 %\let\clearpage\relax
64 %\let\cleardoublepage\relax
65 %\listoffigures%
66 %\listoftables%
67 %\listofalgorithms%
68 %\lstlistoflistings%
69 %\endgroup
70
71 % Abstract
72 \chapter{Summary}%
73 \label{chp:summary}
74 \begin{center}
75 \noindent\input{summary}
76 \end{center}
77
78 % Samenvatting
79 \chapter{Samenvatting}%
80 \label{chp:samenvatting}
81 \begin{center}
82 \noindent\input{samenvatting}
83 \end{center}
84
85 % Acknowledgements
86 \chapter{Acknowledgements}%
87 \label{chp:acknowledgements}
88 \begin{center}
89 \noindent\input{acknowledgements}
90 \end{center}
91
92 \chapter{Research Data Management}%
93 \label{chp:research_data_management}
94 \input{research_data_management}
95
96 % Curriculum Vitae
97 \chapter{Curriculum Vit\ae}%
98 \label{chp:curriculum_vitae}
99 \input{curriculum_vitae}
100
101 % Glossary
102 \addcontentsline{toc}{chapter}{Glossary}%
103 \label{chp:glossaries}
104 \printglossaries%
105
106 % Index
107 \addcontentsline{toc}{chapter}{Index}%
108 \label{chp:index}
109 \printindex
110
111 \end{document} % chktex 10