-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
164 lines (136 loc) · 3.82 KB
/
main.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
\documentclass[12pt]{article}
%PACKAGES
\usepackage[]{graphicx}
\usepackage[english,ngerman]{babel}
\usepackage[]{color}
\usepackage{alltt}
\usepackage{mathtools}
\usepackage{dsfont}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{MnSymbol}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{amssymb}
\usepackage[a4paper, width = 160mm, top = 35mm, bottom = 30mm,
bindingoffset = 0mm]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{ragged2e}
\usepackage{xcolor}
%\usepackage[ruled,vlined]{algorithm2e}
\usepackage{fancyhdr}
\usepackage{mathrsfs}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{enumitem}
\usepackage{array}
\usepackage{multirow}
\usepackage[
backend=biber,
url=false,
citestyle=nature]{biblatex}
\addbibresource{bibliography.bib}
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor = black,
urlcolor = black,
citecolor = black}
%TITLE PARAMS
\newcommand{\mytitle}{Quantification of Myogenic Differentiation Using Deep Learning}
\newcommand{\myname}{Giorgi Nozadze, Moustafa Amin, David Gorbunov}
\newcommand{\mysupervisor}{Prof. Dr. David Rügamer, Dr. Andreas Bender, Tobias Weber}
\newcommand{\mypartner}{Dr. Maximilian Saller}
\newcommand{\changefont}{%
\fontsize{8}{11}\selectfont
}
%COMMANDS
\newcommand{\realsn}{\mathbb{R}^{\!\textit{n}}}
\newcommand{\stardist}{\texttt{StarDist}}
\newcommand{\sam}{\texttt{SAM}}
\newcommand{\with}{\qquad \text{with} \quad}
\newcommand{\integ}[2][]{\int_{#1}\mathrm{d}#2\,}
\newcommand{\reals}[1]{\mathbb{R}^{\!\textit{#1}}}
\newcommand{\identity}{\mathds{1}}
\newcommand{\expval}[2][p]{\mathbb{E}_{#1}\left[#2\right]}
\newcommand{\argmin}[2]{\underset{#1}{\mathrm{argmin}}\left(#2\right)}
\newcommand{\argmax}[2]{\underset{#1}{\mathrm{argmax}}\left(#2\right)}
\newcommand{\var}[2][p]{\text{Var}_{#1}\left[#2\right]}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[R]{\changefont{\mytitle}}
\fancyfoot{}
\fancyfoot[R]{\thepage}
\setlength{\headheight}{14.5pt}
\setlength{\parindent}{0pt}
\interfootnotelinepenalty = 10000
% ------------------------------------------------------------------------------
% MAIN -------------------------------------------------------------------------
% ------------------------------------------------------------------------------
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\numberwithin{equation}{section}
\numberwithin{figure}{section}
\begin{document}
% FRONT PAGE -------------------------------------------------------------------
\begin{titlepage}
\begin{center}
\LARGE
Statistical Consulting
\vspace{0.5cm}
\rule{\textwidth}{1.5pt}
\LARGE
\textbf{\mytitle}
\rule{\textwidth}{1.5pt}
\vspace{0.5cm}
\large
Department of Statistics \\
Ludwig-Maximilians-Universität München
\vfill
\Large
\textbf{\myname}
\vfill
\large
Munich, March 1\textsuperscript{st}, 2024
\vfill
\includegraphics[width = 0.4\textwidth]{sigillum.png}
\vfill
\normalsize
By: \myname
Correspondence email: giorginozadze23@yahoo.com
Supervisors: \mysupervisor
Project Partner: \mypartner
\vfill
\end{center}
\end{titlepage}
\pagenumbering{gobble}
\include{abstract}
\listoffigures
\listoftables
\clearpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\newpage
\include{intro}
\newpage
\include{unsupervised}
\newpage
\include{stardist}
\newpage
\include{myosam}
\newpage
\include{dataset}
\newpage
\include{results}
\newpage
\include{conclusion}
\newpage
%\pagenumbering{gobble}
\printbibliography
\appendix
\cleardoublepage
\include{appendix}
\end{document}