-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
419 lines (313 loc) · 11.6 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Basic configuration
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Use 'KOMA-Script Book' as the document class
\documentclass[toc=bibliography,toc=indentunnumbered,listof=totoc]{scrbook}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Preload essentials
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load some required packages
\usepackage{etoolbox} % Modding standard environments
\usepackage[fleqn,intlimits]{amsmath} % Common mathematical environments
\usepackage[svgnames]{xcolor} % Enables coloring of text and pages
\usepackage{hyperref} % Enables hyperlink generation
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Page design
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Font size
\KOMAoptions{fontsize=11pt}
% Line spacing
\linespread{1.04}
% Paper format
\KOMAoptions{paper=B5}
% Duplex layout
\KOMAoptions{twoside}
% Page layout [1/sqrt(3)]
\usepackage[text={108.25mm,187.50mm},hmarginratio=1:1,vmarginratio=1:2]{geometry}
% Page layout [1/sqrt(2)]
%\KOMAoptions{BCOR=15mm}
%\KOMAoptions{DIV=11}
% Page layout [Classic circle]
%\KOMAoptions{BCOR=15mm}
%\KOMAoptions{DIV=classic}
% Disable headers
\pagestyle{plain}
% Font used for page numbers
\addtokomafont{pagenumber}{\lining\scshape}
% Use spacing instead of indentation to separate paragraphs
%\KOMAoptions{parskip=half+}
% Don't stretch the content to fill entire pages
\raggedbottom
% Don't break paragraphs because of a single line
\PassOptionsToPackage{defaultlines=2,all}{nowidow}
% Permit some hyphenation in ragged-right blocks
\PassOptionsToPackage{newcommands}{ragged2e}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Document fonts
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load font management packages
\usepackage[no-math]{fontspec}
\usepackage{unicode-math}
\usepackage{realscripts}
\usepackage{microtype}
% Where to look for fonts
\defaultfontfeatures{Path={fonts/}}
% Scale all fonts to the same x-height
\defaultfontfeatures{Scale=MatchLowercase}
% Use italics for all math letters
\unimathsetup%
{
math-style=ISO,
nabla=upright,
partial=upright
}
% Turn on "contextual alternates"
\defaultfontfeatures{RawFeature={+calt}}
% Define commands to switch number style
\newcommand{\lining}{\addfontfeature{Numbers={Lining}}}
\newcommand{\oldstyle}{\addfontfeature{Numbers={OldStyle}}}
% Serif font (used for body text)
\setmainfont{Libertinus Serif}%
[
UprightFont = {*-Regular},
ItalicFont = {*-Italic},
BoldFont = {*-Semibold},
BoldItalicFont = {*-SemiboldItalic},
Numbers = {OldStyle},
PunctuationSpace = 1.125
]
% Sans font (used for titling)
\setsansfont{URW Classico}%
[
UprightFont = {*-Regular},
ItalicFont = {*-Italic},
BoldFont = {*-Bold},
Numbers = {Proportional,Lining},
Scale = MatchUppercase
]
% Math font (used for equations)
\setmathfont{Libertinus Math}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Table of contents
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load a package for styling the table of contents
\usepackage{tocbasic}
% Do not include subsections in the table of contents
\setcounter{tocdepth}{1}
% Fix vertical spacing after table of contents title
\BeforeTOCHead[toc]{\RedeclareSectionCommand[beforeskip=1sp,afterskip=1sp]{chapter}}
% Place page numbers right after the section entries
% Use tabular lining figures for the sections, but oldstyle figures for the pages
\DeclareTOCStyleEntry[
entryformat=\lining\bfseries,
linefill=\quad,
pagenumberbox={},
raggedpagenumber,
pagenumberformat=\bfseries,
]{tocline}{chapter}
\DeclareTOCStyleEntry[
entryformat=\lining,
linefill=\quad,
pagenumberbox={},
raggedpagenumber,
pagenumberformat=,
]{tocline}{section}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Headings
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Change the font used for headings
\addtokomafont{disposition}{\sffamily}
% Change the sizes of chapters and sections
\addtokomafont{chapter}{\LARGE}
\addtokomafont{section}{\large}
% Change spacing around chapters and sections
\RedeclareSectionCommand[beforeskip=-0.0\baselineskip,afterskip=0.5\baselineskip]{chapter}
\RedeclareSectionCommand[beforeskip=-1.0\baselineskip,afterskip=0.5\baselineskip]{section}
% Bringhurst-style chapter numbers in the margin
\makeatletter
\newsavebox{\feline@chapter}
\newcommand{\feline@chapter@marker}[1][4cm]{\sbox\feline@chapter{\resizebox{!}{#1}{\setlength{\fboxsep}{0pt}\color{gray}\thechapter}}\parbox[b][0.5cm]{1.5cm}{\usebox{\feline@chapter}\vspace*{-1.325cm}}}
\renewcommand*{\chapterformat}{\sbox\feline@chapter{\feline@chapter@marker[1.6cm]}\makebox[0pt][l]{\makebox[\dimexpr\textwidth+2.0\marginparsep+\wd\feline@chapter\relax][r]{\usebox\feline@chapter}}}
\makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Captions
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Change the font used for captions
\addtokomafont{caption}{\small}
% Change the font used for labels
\addtokomafont{captionlabel}{\bfseries\lining}
% Add 2em margins on each side of the caption. (Since the default
% \parindent is 1em, this implies that the left end of the caption
% will always look one \parindent indented if it comes right before
% or after a new paragraph, and can thus prevent weird indentation.)
\setcapdynwidth{\dimexpr\textwidth-4em\relax}
% Disable extra indentation of subsequent lines in a multiline caption
\setcapindent{0em}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Footnotes
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Make sure footnote marks are separated by commas and kerned properly
\usepackage[multiple=true,mult-fn-sep=${}^{,\kern-0.07em}$]{fnpct}
% Change the font used for footnotes
%\addtokomafont{footnote}{\sffamily}
% Change the footnote marks to lining numbers
\renewcommand{\thefootnote}{\lining{\arabic{footnote}}}
% Change the footnote marks to Latin letters
%\renewcommand{\thefootnote}{\textit{\alph{footnote}}}
% Change the footnote marks to symbols
%\usepackage[wiley]{footmisc}
%\renewcommand{\thefootnote}{\fnsymbol{footnote}}
% Set the footnote rule length to the text width
\setfootnoterule{\textwidth}
% Remove the footnote rule entirely
%\setfootnoterule{0pt}
% Adjust the footnote formatting and spacing
\deffootnote{2.15em}{2.15em}{\thefootnotemark.\kern0.75em}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Hyperlinks
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Table of contents links
\hypersetup{linktoc=page}
% Color the hyperlinks
\hypersetup{colorlinks}
\hypersetup{allcolors=Navy}
% Font used for hyperlinks
\urlstyle{rm}
% Fix kerning problems for backslashes and redefine underscores in hyperlinks
\makeatletter
\let\UrlSpecialsOld\UrlSpecials
\def\UrlSpecials{\UrlSpecialsOld\do\/{\Url@slash}\do\_{\Url@underscore}}%
\def\Url@slash{\@ifnextchar/{\kern+0.05em\mathchar47\kern-0.10em}%
{\kern0.08em\mathchar47\penalty\UrlBigBreakPenalty}}
\def\Url@underscore{\nfss@text{\leavevmode \kern.06em\vbox{\hrule height 0.12ex width 0.4em}}}
\makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% References
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliography backend (e.g. 'biber' or 'bibtex')
\PassOptionsToPackage{backend=biber}{biblatex}
% Bibliography style (e.g. 'phys' or 'nature')
\PassOptionsToPackage{style=bababib}{biblatex}
% Citation style (e.g. 'plain' or 'superscript')
\PassOptionsToPackage{autocite=plain}{biblatex}
% Enable multiple bibliographies with separate numbering
\PassOptionsToPackage{defernumbers=true}{biblatex}
% Format for cross-references with \cref
\PassOptionsToPackage{noabbrev}{cleveref}
\newcommand{\crefrangeconjunction}{--}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Postload packages
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load the required packages
\usepackage{biblatex} % Produces the bibliography
\usepackage{ragged2e} % Permits ragged-right with hyphenation
\usepackage{nowidow} % Prevents widows and orphans in text
\usepackage{cleveref} % Easy and consistent cross-references
\usepackage{graphicx} % Loads and displays figures
\usepackage{pdfpages} % Enables embedding of documents
\usepackage{booktabs} % Proper formatting of tables
\usepackage{siunitx} % Proper formatting of units
\usepackage{mhchem} % Proper formatting of chemicals
\usepackage{lipsum} % Insertion of arbitrary content
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Miscellaneous
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Enforce a consistent Greek style
%\AtBeginDocument{\let\nabla=𝛁}
\AtBeginDocument%
{
\let\epsilon=\varepsilon
\let\phi=\varphi
}
% Change the font used for tables
\AtBeginEnvironment{tabular}{\small}
\AtBeginEnvironment{tabular*}{\small}
% Use lining numbers for chemistry and physics
\mhchemoptions{textfontcommand=\lining}
\sisetup{text-rm=\lining}
% Format for typesetting physical units
\sisetup{range-units=single}
\sisetup{range-phrase=--}
\sisetup{detect-all=true}
% Use 2em equation indentation
\makeatletter
\setlength\@mathmargin{2em}
\makeatother
% Replace \cite with the more flexible \autocite
\let\cite=\autocite
% Define a custom color palette
\definecolor{whiteish}{rgb}{1.000, 0.964, 0.859}
\definecolor{rosewood}{rgb}{0.396, 0.000, 0.043}
% Declare a custom article format for my papers
\DeclareBibliographyAlias{customa}{article}
\DeclareFieldFormat[customa]{labelnumber}{\textsc{\Rn{#1}}}
% Where to look for figure files
\graphicspath{{./figures/}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Custom macros
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Abbreviations
\newcommand{\eg}{e.g.\ }
\newcommand{\ie}{i.e.\ }
\newcommand{\cf}{c.f.\ }
\newcommand{\etal}{et al.\ }
% Common notation
\renewcommand{\d}[1]{\mathop{\textrm{d}\kern0em#1\kern0.1em}}
\newcommand{\up}{\uparrow}
\newcommand{\dn}{\downarrow}
\newcommand{\trans}{{\symsfup{T}}}
% Common functions
\DeclareMathOperator{\tr}{Tr}
\DeclareMathOperator{\re}{Re}
\DeclareMathOperator{\im}{Im}
\DeclareMathOperator{\atan}{atan}
\DeclareMathOperator{\atanh}{atanh}
\DeclareMathOperator{\asin}{asin}
\DeclareMathOperator{\asinh}{asinh}
\DeclareMathOperator{\acos}{acos}
\DeclareMathOperator{\acosh}{acosh}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Document itself
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Import bibliographies
\addbibresource{references.bib}
\begin{document}
\frontmatter
\include{chapters/abstract}
\include{chapters/preface}
\tableofcontents
\mainmatter
\include{chapters/introduction}
\include{chapters/test}
\include{chapters/conclusion}
\backmatter
\printbibliography
\end{document}