\documentclass{dissertation}
%\documentclass[print]{dissertation}
%\documentclass[print,draft]{dissertation}
\newcommand{\sparkline}[1]{$\vcenter{\hbox{\includegraphics[scale=0.04]{#1}}}$}
\makeglossaries
\newcommand*{\origrightarrow}{}
\let\oldarrow\textrightarrow
\renewcommand*{\textrightarrow}{\fontfamily{cmr}\selectfont\origrightarrow}
\loadglsentries[main]{glossary}
\input{abbreviations}
%%%%%%%%%%%%%%%
% Custom packages
%%%%%%%%%%%%%%%
\usepackage{lipsum}
\begin{document}
%% Specify the title and author of the thesis. This information will be used on
%% the title page (in title/title.tex) and in the metadata of the final PDF.
\title[This is a very nice subtitle]{This is a very nice title}
\author{John Macrel}{Doe}
%% Use Roman numerals for the page numbers of the title pages and table of
%% contents.
\frontmatter
%%%%
% All TITLE pages
%%%%
\include{frontmatter/title}
% Dissertation Committee
%%%%
\cleardoublepage
\thispagestyle{empty}
\include{frontmatter/committee}
% Fundings, SIKS, etc.
%%%%
\cleardoublepage
\thispagestyle{empty}
\include{frontmatter/funding}
% Declaration of Authorship
%%%%
\cleardoublepage
\thispagestyle{empty}
\include{frontmatter/authorship}
% Quote
%%%%
\cleardoublepage
\thispagestyle{empty}
\dedication{\epigraph{Don’t ask whether you can do something, but how to do it.}{Adele Goldberg}}
%%%%
% ToC
%%%%
\cleardoublepage
\thispagestyle{empty}
\tableofcontents
%%%%
% Abstract(s)
%%%%
\include{abstract/abstract}
\include{abstract/samenvatting}
%%%%
% Acknowledge
%%%%
\include{acks/acks}
%% Use Arabic numerals for the page numbers of the chapters.
\mainmatter
%% Turn on thumb indices.
\thumbtrue
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% CHAPTERS START
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{01_introduction/introduction}
\include{02_paper-1/paper-1}
\include{09_conclusion/conclusion}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% CHAPTERS END
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Use letters for the chapter numbers of the appendices.
%\appendix
%\include{appendix-a/appendix-a}
%% Turn off thumb indices for unnumbered chapters.
\thumbfalse
%%%%
% References
%%%%
\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\setheader{Bibliography}
URLs in this thesis have been archived on Archive.org. Their link target in digital editions refers
to this timestamped version.
\bibliographystyle{unsrt}
% argument is your BibTeX string definitions and bibliography database(s)
\bibliography{dissertation}
%%%%
% Glossary
%%%%
\glsaddall
\printglossary[type=\acronymtype,title={Glossary}]
\addcontentsline{toc}{chapter}{Glossary}
\setheader{Glossary}
%%%%
% Thesis publications
%%%%
\include{publications/publications}
\end{document}