-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
111 lines (96 loc) · 2.37 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
\documentclass[UKenglish]{ifimaster}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc,url}
\usepackage{mdframed}
\usepackage{caption}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{color,soul}
\usepackage{wrapfig}
\usepackage{subcaption}
\usepackage{dsfont}
\usepackage{listings}
\usepackage{floatrow,subfig}
\usepackage{tabularx}
\usepackage{listings}
\usepackage{thmtools}
\usepackage[toc,page]{appendix}
\usepackage{float}
\usepackage{mathtools}
\usepackage{csquotes}
\usepackage[]{algorithm2e}
\usepackage[nomessages]{fp}
\usepackage{babel,textcomp,csquotes,ifimasterforside,varioref,graphicx}
\usepackage[backend=biber,style=numeric-comp]{biblatex}
\usetikzlibrary{automata,arrows,positioning,matrix}
\usepgfplotslibrary{fillbetween}
\usepackage{ifthen}
\usepackage[noend]{algpseudocode}
\newcommand{\hlcyan}[1]{{\sethlcolor{cyan}\hl{#1}}}
\newcommand{\HeatmapNode}[1]{
\ifthenelse{#1 < 50}
{
\FPeval\col{100-2*#1}
\node [fill=red!\col] {#1};
}
% else
{
\FPeval\col{100-2*(100-#1)}
\node [fill=green!\col] {#1};
}
}
% Fix footnotes breaking pages
\interfootnotelinepenalty=10000
% Fix footnote indentation
\usepackage[hang,flushmargin]{footmisc}
\newtheoremstyle{break}
{\topsep}{\topsep}%
{\itshape}{}%
{\bfseries}{}%
{\newline}{}%
\theoremstyle{break}
\newtheorem{defn}{Definition}
\newtheorem{corollary}{Corollary}
\newtheorem{assumption}{Assumption}
\renewcommand{\footnoterule}{%
\kern -3pt
\hrule width \textwidth height 1pt
\kern 2pt
}
\usepackage{subfiles}
\usepackage{blindtext}
\title{Aligning reads against a graph based reference genome}
\subtitle{Approximate searches in large and complex structures}
\author{Esten H{\o}yland Leonardsen}
\bibliography{thesis}
\begin{document}
\ififorside{}
\frontmatter{}
\maketitle{}
\subfile{abstract}
\subfile{acknowledgements}
\tableofcontents{}
\listoffigures{}
\listoftables{}
\listoftheorems[ignoreall,show={defn}]
\mainmatter{}
\subfile{introduction}
\subfile{background}
\subfile{methodology}
\subfile{algorithm}
\subfile{validation}
\subfile{performance}
\subfile{discussion}
\subfile{further_work}
\nocite{*}
\printbibliography
\begin{appendices}
\subfile{proof}
\subfile{analysis}
\subfile{tool}
\subfile{birthday_problem}
\end{appendices}
\backmatter{}
\end{document}