-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
43 lines (33 loc) · 962 Bytes
/
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
\documentclass[12pt]{report}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{titlesec}
% \usepackage{times}
\usepackage{graphicx}
\graphicspath{{figures/}}
\usepackage{algorithm}
\usepackage{microtype}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[a4paper]{geometry}
\usepackage[hidelinks]{hyperref}
\usepackage[noend]{algpseudocode}
\usepackage[estonian, english]{babel}
\titlespacing*{\chapter}{0pt}{-20pt}{40pt}
\titleformat{\chapter}{\normalfont\bfseries}{\Huge \thechapter.}{20pt}{\Huge}
\newcommand{\argmax}{\operatornamewithlimits{argmax}}
\begin{document}
\input{chapters/title}
\input{chapters/abstract}
\tableofcontents
\input{chapters/introduction}
\input{chapters/background}
\input{chapters/methods}
\input{chapters/results}
\input{chapters/conclusion}
\bibliographystyle{apalike}
\addcontentsline{toc}{chapter}{\bibname}
\bibliography{bibliography}
\input{chapters/appendices}
\end{document}