start with outline and fill in some data
[phd-thesis.git] / thesis.tex
1 \documentclass[twoside,10pt]{book}
2
3 \input{preamble}
4
5 % Just for the blind text, can go when it's finished
6 \usepackage{lipsum}
7
8 % Just for the todonotes, can go when it's finished
9 \usepackage{todonotes}
10 \setuptodonotes{
11 backgroundcolor=white,
12 linecolor=black,
13 size=scriptsize,
14 inline,
15 }
16
17 % Document info
18 \title{Some title}
19 \author{Some author}
20
21 \date{\formatdate{1}{6}{2023}}
22
23 \begin{document}
24 \frontmatter%
25 %\addtitlethumb{Frontmatter}{}{white}{gray}{pagesLTS.0}
26
27 %Titlepage
28 \input{titlepage}
29 \newpage%
30
31 % Epigraph/motto
32 \input{motto}
33
34 % Table of contents
35 \tableofcontents
36 \newpage%
37
38 % Dedication
39 \input{dedication}
40
41 \listoftodos%
42
43 % Reset glossary and thus the acronyms
44 \glsresetall{}
45
46 % The actual document
47 \mainmatter%
48 \addthumb{Chapters}{\arabic{chapter}}{white}{gray}
49
50 \chapter{Introduction}%
51 \label{chp:introduction}
52 \input{introduction}
53
54 \part{\glst{DSL}}%
55 \label{prt:dsl}
56 \input{dsl}
57
58 \part{\glst{TOP}}%
59 \label{prt:top}
60 \input{top}
61
62 \part{\glst{IOT}}%
63 \label{prt:iot}
64 \input{iot}
65
66 % Start appendix
67 \appendix%
68 \label{chp:appendix}
69 \addthumb{Appendices}{\Alph{chapter}}{white}{gray}
70
71 \chapter{An Appendix}%
72 \label{chp:an_appendix}
73 \input{an_appendix}
74
75 \backmatter%
76 \stopthumb% chktex 9
77 \addtitlethumb{Backmatter}{}{white}{gray}{pagesLTS.0}
78
79 % Bibliography
80 \phantomsection{}%
81 \label{chp:bibliography}
82 \addcontentsline{toc}{chapter}{Bibliography}
83 \bibliographystyle{plain}
84 \bibliography{thesis}
85
86 % Abstract
87 \chapter{Summary}%
88 \label{chp:summary}
89 \begin{center}
90 \noindent\input{summary}
91 \end{center}
92
93 % Samenvatting
94 \chapter{Samenvatting}%
95 \label{chp:samenvatting}
96 \begin{center}
97 \noindent\input{samenvatting}
98 \end{center}
99
100 % Acknowledgements
101 \chapter{Acknowledgements}%
102 \label{chp:acknowledgements}
103 \begin{center}
104 \noindent\input{acknowledgements}
105 \end{center}
106
107 \chapter{Research Data Management}%
108 \label{chp:research_data_management}
109 \input{research_data_management}
110
111 % Curriculum Vitae
112 \chapter{Curriculum Vit\ae}%
113 \label{chp:curriculum_vitae}
114 \input{curriculum_vitae}
115
116 % Glossary
117 \addcontentsline{toc}{chapter}{Glossary}%
118 \label{chp:glossaries}
119 \printglossaries%
120
121 % Lists of
122 \cleardoublepage{}
123 \phantomsection{}%
124 \label{chp:listsof...}
125 \addcontentsline{toc}{chapter}{Lists of \ldots}
126 \begingroup
127 \let\clearpage\relax
128 \let\cleardoublepage\relax
129 \listoffigures%
130 \listoftables%
131 \listofalgorithms%
132 \lstlistoflistings%
133 \endgroup
134
135 % Index
136 \addcontentsline{toc}{chapter}{Index}%
137 \label{chp:index}
138 \printindex
139
140 \end{document} % chktex 10