forked from Pseudomanifold/latex-mimosis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathThesis.tex
131 lines (103 loc) · 3.5 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
% LTeX: language=en-US
\documentclass{mimosis}
% The default language is English.
% If your thesis is in German, uncomment this line:
% \AtBeginDocument{\selectlanguage{ngerman}}
\usepackage{metalogo} % unnecessary
\usepackage{lipsum} % unnecessary
% This can be used to typeset bold font in table while still aligning the numbers correctly:
\usepackage{etoolbox}
% Hyperlinks
\definecolor{GoetheBlue}{rgb}{0,0.38,0.56}
\usepackage[%
colorlinks = true,
citecolor = GoetheBlue,
linkcolor = GoetheBlue,
urlcolor = GoetheBlue,
unicode,
]{hyperref}
\renewcommand\UrlFont{\normalfont\small}
\renewcommand\path[1]{{\normalfont\small\detokenize{#1}}}
\usepackage[nameinlink,capitalise]{cleveref}
\usepackage{bookmark}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Fonts
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Set serif font:
\usepackage[lining,semibold,scaled=1.05]{ebgaramond}
% Set monospace font:
\usepackage[scale=0.85]{sourcecodepro}
% if amsthm is needed, must be loaded before newtxmath
\usepackage{amsthm}
% Set math font:
\usepackage[ebgaramond,vvarbb,subscriptcorrection]{newtxmath}
% load after all math to give access to bold math using \bm{..} command:
\usepackage{bm}
% Acronym and glossary directories are rare in theoretical computer science.
% If possible, try to avoid them.
% \newacronym[description={Principal component analysis}]{PCA}{PCA}{principal component analysis}
% \newacronym {SNF}{SNF}{Smith normal form}
% \newacronym[description={Topological data analysis}] {TDA}{TDA}{topological data analysis}
% \newglossaryentry{LaTeX}{%
% name = {\LaTeX},
% description = {A document preparation system},
% sort = {LaTeX},
% }
% \newglossaryentry{Real numbers}{%
% name = {$\real$},
% description = {The set of real numbers},
% sort = {Real numbers},
% }
% \makeindex
% \makeglossaries
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Ordinals
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\makeatletter
\@ifundefined{st}{%
\newcommand{\st}{\textsuperscript{\textup{st}}\xspace}
}{}
\@ifundefined{rd}{%
\newcommand{\rd}{\textsuperscript{\textup{rd}}\xspace}
}{}
\@ifundefined{nd}{%
\newcommand{\nd}{\textsuperscript{\textup{nd}}\xspace}
}{}
\makeatother
\renewcommand{\th}{\textsuperscript{\textup{th}}\xspace}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Incipit
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Very important thesis title}
\subtitle{Less important thesis subtitle}
\author{John Doe}
\date{\today}
\begin{document}
\frontmatter
\include{Sources/Title_Goethe_Uni}
\include{Sources/Abstract}
\tableofcontents
\mainmatter
\include{Sources/Introduction}
\include{Sources/Preliminaries}
% Add your own chapters here:
% \include{Sources/mychapter}
\include{Sources/Conclusion}
% This ensures that the subsequent sections are being included as root
% items in the bookmark structure of your PDF reader.
\bookmarksetup{startatroot}
\backmatter
% The acronyms and glossary are optional.
% \begingroup
% \let\clearpage\relax
% \glsaddall
% \printglossary[type=\acronymtype]
% \newpage
% \printglossary
% \endgroup
% The index is optional
% \printindex
% The bibliography is required.
\bibliographystyle{alphaurl}% typically plainurl or alphaurl
\bibliography{Thesis}
\end{document}