-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
110 lines (80 loc) · 2.65 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
\documentclass[
11pt,
colorful,
boxey,
a4paper,
]{tufte-style-thesis}
% package inclusions for this specific documentation file. the .cls does not neet them.
\usepackage{lipsum} % the chad package
\usepackage{pdfpages}
\usepackage[super]{nth} % for the superscripted "th"
\usepackage{xspace} % For the \metaDMG macro
\usepackage{siunitx} % for the \SI macro
\usepackage{tikz}
\usepackage{tikzscale}
\usepackage{subcaption}
\usepackage{datetime2}
\usepackage[danish,british]{babel}
% \usepackage[ % use biblatex for bibliography
% backend=biber, % use biber or bibtex backend
% style=authoryear, % choose style
% natbib=true, % allow natbib commands
% hyperref=true, % activate hyperref support
% alldates=year, % only show year (not month)
% sorting=ynt, % sort cites by year
% sortcites,
% url=false,
% ]{biblatex}
% For expectation values
\newcommand{\EX}[1]{\mathbb{E}\left[{#1}\right]}
\newcommand{\VarX}[1]{\mathbb{V}\left[{#1}\right]}
\newcommand{\metaDMG}{\texttt{metaDMG}\xspace}
\renewcommand{\chapterautorefname}{Chapter}
\renewcommand{\sectionautorefname}{Section}
\DeclareMathOperator*{\argmin}{arg\,min}
\DeclareMathOperator*{\argmax}{arg\,max}
\counterwithout{equation}{chapter} % remove the chapter number
% \counterwithin{equation}{chapter} % add the chapter number
\counterwithout{figure}{section}
\DeclareSIUnit\year{yr}
\DeclareSIUnit\BP{BP}
\DeclareSIUnit\basepairs{bp}
\newcommand*\dx{\mathop{}\!\mathrm{d}}
\newcommand{\Npdfpages}[1]{\pdfximage{#1}\the\pdflastximagepages}
\usetikzlibrary{bayesnet}
\usetikzlibrary{calc}
% Update to your bibliography file
\addbibresource{bibliography.bib}
\author{Christian Michelsen}
\title{Biological Data Science}
\subtitle{Ancient genomics, anesthesiology, epidemiology, and a bit in between}
\person{Supervisor}{Troels C. Petersen}{Niels Bohr Institute}
\person{Cosupervisor}{Thorfinn S. Korneliussen}{Globe Institute}
\shoutouts{Til Blob.}
\begin{document}
\maketitle
\addtocontents{toc}{\protect\addvspace{-1.5cm}}
\tableofcontents
\frontmatter
% \part*{Front}
\pagenumbering{roman}
\include{frontmatter/preface.tex}
\include{frontmatter/abstract.tex}
\include{frontmatter/dansk-abstract.tex}
\include{frontmatter/publications.tex}
\include{frontmatter/acknowledgements.tex}
\mainmatter
% \part*{Main}
\pagenumbering{arabic}
\include{mainmatter/introduction.tex}
\include{backmatter/bibliography.tex}
\include{mainmatter/paper-dna.tex}
\include{mainmatter/paper-hospital.tex}
\include{mainmatter/paper-covid.tex}
\include{mainmatter/paper-diffusion.tex}
\part*{Appendix}
\appendix
\include{mainmatter/appendix.tex}
\backmatter
% \include{backmatter/index.tex}
\end{document}