-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
174 lines (139 loc) · 3.87 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
\pdfminorversion=5
%\pdfcompresslevel=9
%\pdfobjcompresslevel=2
\documentclass[10pt]{book}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% PACKAGES AND SETTINGS
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% GENERAL
% language
\usepackage[english,dutch]{babel}
\babeltags{en = english}
\babeltags{nl = dutch}
\selectlanguage{english}
\usepackage{blindtext} % lorum ipsum dummy text
%%%%%%%%%%%
% Set thesis style
%%%%%%%%%%%
\usepackage[screen]{thesis}
%
% Shortcuts:
%
% screen enables options : booklet
% print enables options : booklet scaled, cmyk, bindingoffset
%
%
% All options:
%
% booklet papersize 17x24cm
% bookletscaled papersize 17x24cm on a regular a4paper with crop marks
% bindingoffset set 6.5mm binding offset
% cmyk force (tikz) cmyk colours
% newfonts use new modern fonts garamondx and newtxmath
% norulers remove header rulers
% italic put header chapter and section in italic
% thumbs enable chapter thumbs
% debug enable geometry showframe and showcrop
% custom hypens
\hyphenation{stra-to-pause}
\hyphenation{Bre-khov-skikh}
% Some common stuff
\newcommand{\publicationNote}{\newline Note that minor changes have been introduced to make the text consistent with the other chapters.}
% a file with custom math definitions
\include{math_definitions}
%%%%%%%%
% ADDITIONAL
%%%%%%%%
% figures
\usepackage{graphicx}
%% Define path for figures -- for safety, keep the last /
\graphicspath{{ch-introduction/figs/}{ch-first/figs/}{ch-second/figs/}{ch-another/figs}{app/figs/}}
% Long tables spanning multiple pages (list of symbols)
\usepackage{longtable}
% For whole page figures, to put a caption on the following page
%
% Defines FPfigure environment (\begin and \end) to put around a regular
% figure environment to place the caption automatically on the following
% page.
% Make sure that the fltpage.sty file is present!
%
\usepackage[CaptionAfterwards]{fltpage}
%%%%%%%%%%
% TIKZ/PGF
%%%%%%%%%%
\usepackage{tikz-3dplot}
\usepackage{pgfplots}
\usepackage{arrayjobx}
\usepackage{scalerel}
\usepackage{stackengine}
\usetikzlibrary{arrows,trees,shapes,backgrounds,calc,quotes,angles,positioning,intersections,patterns,decorations.markings}
\tikzset{
%Define standard arrow tip
>=stealth',
% Define arrow style
pil/.style={
->,
thick,
shorten <=2pt,
shorten >=2pt,}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DOCUMENT
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\crop[cam] % remove if you don't want crop marks when using bookletscaled
%%%%%%%%%%%%%
% TITLE
%%%%%%%%%%%%%
\title{A subtitle}{My doctoral thesis title 2}
\author{Edgar}{Allan}{Poe}
\include{title/title_en}
\dedication{\epigraph{For you}{}}
%%%%%%%%%%%%%
% FRONT
%%%%%%%%%%%%%
\frontmatter
\include{preface/preface} % if you don't like acknowledgements at the end
\include{summary/summary}% summary
\selectlanguage{dutch}
\include{summary/samenvatting}% samenvatting
\selectlanguage{english}
\tableofcontents % table of contents
%%%%%%%%%%%%%
% BODY
%%%%%%%%%%%%%
\mainmatter
\include{ch-introduction/main}
\include{ch-first/main}
\include{ch-another/main}
\include{ch-conclusions/main}
%%%%%%%%%%%%%
% BACKMATTER
%%%%%%%%%%%%%
\appendix
\include{app/app-theory}
%%%%%%%%%%%%%
% BIBLIO
%%%%%%%%%%%%%
\backmatter
\cleardoublepage
\addcontentsline{toc}{chapter}{Bibliography}
\markboth{Bibliography}{Bibliography}
{\footnotesize
\bibliographystyle{agufull08} % using AGU's agufull08.sty format.
\bibliography{psmets}
}
% list of symbols
\include{lists-symb-abbr/main}
% a cv and list of publications
\include{cv/cv}
% empty page at the end
\cleardoublepage
\thispagestyle{empty}
\newpage~
\end{document}
% ------------------------------------------------