-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
190 lines (146 loc) · 3.62 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
\pdfoutput=1
\documentclass[10pt]{searchthesis}%,makeidx
%%% For an A4 format, use there options instead
%\documentclass[12pt,makeidx]{phdthesis}
%\usepackage{a4wide}
%
% PACKAGES
%
%%% Fonts & Symbols
\usepackage{palatino}
\usepackage{mathpazo}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bbding}
%%% Encoding
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
%%% Language support
%%% The last language in the option list (english) will be active.
%%% See https://www.overleaf.com/learn/latex/International_language_support
\usepackage[dutch, english]{babel}
%%% Document elements
\usepackage{acronym}
\usepackage{appendix}
\usepackage{fancyhdr}
%%% Floats
\usepackage{booktabs}% table environment
\usepackage{multirow}% multi-row in tables
\usepackage{multicol}% multi-column in tables
\usepackage{longtable}% multi-page tables
\usepackage{graphicx}
\usepackage{wrapfig}% for the CV photo
\usepackage[font={small}]{caption}
\usepackage{subcaption}
%%% Formatting
\usepackage[round]{natbib}
\usepackage[resetlabels]{multibib}
% Better hyphenation for URLs. Need to be loaded before the `hyperref`.
\usepackage[hyphens]{url}
\usepackage{hyperref}
\usepackage{cleveref}
% Honor the surrounding font in some version of `siunitx`.
\usepackage[detect-all]{siunitx}
% Format units using the US spelling that is used as a de facto standard.
\sisetup{group-separator={,},group-minimum-digits={3},output-decimal-marker={.}}
\usepackage{enumitem}
\usepackage{listings}
\usepackage{epigraph}
% The ACM Publishing System (TAPS) accepted way to typeset quotations.
\usepackage{dirtytalk}
\usepackage[table,dvipsnames,svgnames,x11names]{xcolor}
%%% Page formatting
% \usepackage{lscape}
% \usepackage{setspace}
% \usepackage{afterpage}
% \usepackage{chngpage} %change margin to fit table
% \usepackage{framed}
%
% CONFIGS, MACROS, COMMANDS & ENVIRONMENTS
%
%%% Table column types
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcommand{\X}{\XSolidBrush{}}
\newcommand{\V}{\Checkmark{}}
\pdfcompresslevel=0
%
% CONTENT
%
\begin{document}
% Uncomment this for the digital distribution version
% (i.e. with the front of the cover)
\include{c0-coverpage}
\include{c0-titlepage}
% Not required but nice to have
\include{c0-work_and_funding}
% Not required but nice to have
\include{c0-dedication}
% English Abstract
\include{c0-abstract}
% Ducth Abtract
\include{c0-abstract_nl}
\begingroup
%%% Table of Contents
\cleardoublepage
\pagenumbering{roman}
\tableofcontents
\newpage
%%% Acknowledgements
\cleardoublepage
\include{c0-acknowledgements}
\newpage
%%% List of Figures
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\newpage
%%% List of Tables
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\newpage
\endgroup
%
% CHAPTERS
%
\pagenumbering{arabic}
\setcounter{page}{0}
% Introduction
\include{c1-intro}
% Paper 1 - Title
\include{c2-paper1}
% . Add other content chapters here
% .
% .
% Summary
\include{c9-conclusions}
%
% Appendices (comment if not needed)
%
\appendix
\include{ca1-paper1}
% . Add other appendices
% .
% .
%
% BIBLIOGRAPHY
%
\small
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{kluwer-with-doi}
\bibliography{thesis-citations}
%
% EXTRA AUTHOR INFORMATION (optional)
%
% Pulications, events and reviews
\include{cx-activities}
% CV
\include{cx-cv}
\end{document}