-
Notifications
You must be signed in to change notification settings - Fork 4
/
thesis.tex
124 lines (104 loc) Β· 4.54 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
%%%% DOCUMENT CLASS ************************************************************
\documentclass[print,thumbmain]{src/thesis} % uncomment for writing
%\documentclass[final]{src/thesis} % uncomment for rendering/final version
%%%% PREAMBLE ******************************************************************
\input{src/colors}
\input{src/packages}
\input{src/commands}
\input{src/vector}
\input{src/mathematics}
\input{src/lemma}
\input{src/review}
\input{src/tikz}
%%%% Graphics paths
% **********************************************************
\graphicspath{{img/}{../../img/}{../../../img/}}
%%%% REVIEWING OF THESIS
% **********************************************************
%\usepackage{showframe}
\setreviewsoff
%%%% DOCUMENT COLORS **********************************************************
% see src/colors to change colors
%%%% DOCUMENT DETAILS **********************************************************
\author{Name of Author}
\newcommand{\placeofbirth}{Place of birth}
\renewcommand{\year}{2022}
\newcommand{\defensedate}{maandag 30 december 2022}
\newcommand{\defensetime}{16:00}
\newcommand{\maintitle}{Awesome thesis title}
\newcommand{\subtitle}{with an awesome subtitle}
\newcommand{\isbn}{123-45-678-9012-3} % 123boldmath-45-678-9012-3
\newcommand{\printer}{Name of printer || www.printerswebsite.nl}
\newcommand{\rector}{prof. dr. Rector}
% other relevant meta data about the thesis can be found in preface.tex
\makeatletter % generates all the \author stuff
%%%% MAIN DOCUMENT *************************************************************
\begin{document} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% ***************************************************************************
\pagenumbering{roman}
\thispagestyle{empty}
%%%% FRONT MATTERS *************************************************************
\cover{thesis_front.pdf} % Adds your thesis' front cover if the option 'print' is NOT used. Printing companies require the thesis cover to be supplied separately and in a different format. Definition of \cover{} is given in commands.tex.
% Front matter
\include{0_preface/preface}
\include{1_summary/abstract}
\include{1_summary/samenvatting}
\include{1_summary/societal_summary}
%%%% NOMENCLATURE **************************************************************
\cleardoublepage
\pdfbookmark{\contentsname}{Contents}
\tableofcontents
\newpage
\include{2_nomenclature/nomenclature}
%%%% MAIN MATTERS *************************************************************
% This state variable is used for creating the thumb index by indicating that
% the following chapter is numbered (i.e. not \chapter*{})
\isstarredchapterfalse
\cleardoublepage
\thispagestyle{empty}
\setcounter{page}{1}
\pagenumbering{arabic}
\part{Background}\label{part: intro}
\include{3_chapters/0_introduction/introduction}
% *************************************************************
%%%% first part
\cleardoublepage
\part{Second chapter}\label{part: design}
\include{3_chapters/1_dummy_chapter/dummy}
% *************************************************************
%%%% second part
\cleardoublepage
\part{Third part}\label{part: design}
\include{3_chapters/1_dummy_chapter/dummy}
% *************************************************************
\part{Closing}\label{part: closing}
\include{3_chapters/3_conclusions/conclusions}
%%%% APPENDIX ******************************************************************
\appendix
\cleardoublepage
\part{Appendices}
\definecolor{thumbcolor}{gray}{0.4} % Change the color of the thumb index tags to gray
\include{4_appendices/appendix}
%%%% BACK MATTER ***************************************************************
\isstarredchaptertrue % This state variable is used for creating the thumb index by indicating that the following chapter is not numbered (i.e. \chapter*{})
\bookmarksetup{startatroot}
\addtocontents{toc}{\bigskip}%
\include{5_bibliography/bibliography}
\include{6_acknowledgement/acknowledgement}
\newpage
\include{7_publications/publications}
\include{8_cv/cv}
%%%% BACK **********************************************************************
%\newpage {~}
\thispagestyle{empty}
% Adds your thesis' back cover if the option 'print' is NOT used.
% Printing companies require the thesis cover to be supplied separately and in a different format
% and require an even number of pages (because of double sided printing).
\ifprint{\cleardoublepage}
\else
% \newpage {~}
% \thispagestyle{empty}
\includepdf[pages=-]{img/thesis_back.pdf}
\fi
\end{document}
%%%% THAT's ALL FOLKS **********************************************************