-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
67 lines (57 loc) · 1.72 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
\documentclass[USenglish,glsresetperchapter,a4paper]{uit-thesis}
% Packages
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{xspace}
\usepackage{tabularx}
\usepackage{amsmath}
\usepackage{numprint}
\usepackage{cases}
\usepackage{tocloft}
\usepackage{csquotes}
\usepackage{textgreek}
\usepackage{listings}
\usepackage[backend=biber, bibstyle=ieee, citestyle=numeric-comp, sorting=none]{biblatex}
\usepackage[binary-units=true]{siunitx}
\usepackage{subcaption}
% load configurations
\input{config/chat.tex}
\input{config/listings.tex}
\input{config/acronyms.tex}
\input{config/xtabular.tex}
\input{config/equation.tex}
% Paths
\addbibresource{bibliography.bib}
\graphicspath{{images/}}
% Thesis configuration
\ThesisRightFrontpageImage{images/longcat_flip.jpg}
\newcommand{\project}{Limelight\xspace}
\newcommand{\thesisquote}[2]{\emph{“#1”} -- #2 \\[2\baselineskip]}
\begin{document}
% Front page
\title{\project: Real-Time Detection of Pump-and-Dump Events on Cryptocurrency Exchanges Using Deep Learning}
\author{Andreas Isnes Nilsen}
\thesisfaculty{The Faculty of Science and Technology \\ Department of Computer Science}
\thesisprogramme{INF-3981: Master's Thesis In Computer Science \\ June 1st 2019}
\maketitle
\frontmatter
% Meta
\input{chapters/0_quotes.tex}
\input{chapters/0_abstract.tex}
\input{chapters/0_acknowledgement.tex}
\tableofcontents
\listoflistings
\listofmyequations
\printacronyms[style=ult-super]
% Content
\mainmatter
\input{chapters/1_introduction}
\input{chapters/2_background}
\input{chapters/3_design}
\input{chapters/4_implementation}
\input{chapters/5_evaluation}
\input{chapters/6_conclusion}
% Bibliography and appendix
\printbibliography[heading=bibintoc,title=Bibliography]
\backmatter
\end{document}