forked from eXascaleInfolab/thesis_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
executable file
·111 lines (97 loc) · 4.64 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% eXascale Infolab thesis template -- Bachelor and Masters
% version 1.1, Oct 2019
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Based on:
% Masters/Doctoral Thesis
% LaTeX Template Version 2.5 (27/8/17)
% http://www.LaTeXTemplates.com
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[11pt,english,singlespacing,headsepline,consistentlayout]{structure/XI_thesis}
%----------------------------------------------------------------------------------------
% LATEX PACKAGES
%----------------------------------------------------------------------------------------
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage{mathpazo} % Use the Palatino font by default
\usepackage[backend=bibtex,style=numeric,natbib=true]{biblatex} % Use the bibtex backend with the square citation style (which resembles APA)
\usepackage[autostyle=true]{csquotes} % Required to generate language-dependent quotes in the bibliography
\usepackage{booktabs} % professional-quality tables
\usepackage{array} % custom sizes for table columns
\usepackage{amssymb} % extended blackboard math symbols
\usepackage{amsmath} % complete AMS math package
% \usepackage[english]{babel} % spelling / syllabification
\usepackage{algorithm} % pseudocode float
\usepackage[noend]{algpseudocode} % pseudocode macros
\usepackage{graphicx} % include graphics
\usepackage{epstopdf} % vectorial graphics
\usepackage{subcaption} % sub captions
\usepackage{url} % URLs
\usepackage{xcolor} % specify custom colours
\usepackage{listings} % code syntax highlighting
\usepackage{newtxmath} % greek symbols
% Load package settings
\input{structure/settings.tex}
\input{structure/info.tex}
\AtBeginDocument{
\hypersetup{pdftitle=\ttitle} % Set the PDF's title to your title
\hypersetup{pdfauthor=\authorname} % Set the PDF's author to your name
\hypersetup{pdfkeywords=\keywordnames} % Set the PDF's keywords to your keywords
}
%----------------------------------------------------------------------------------------
\begin{document}
\frontmatter
\pagestyle{plain}
\input{structure/title.tex} % Title page definition
% Include declaration page -- not necessary for Bachelor and Masters
% \input{declaration.tex}
\cleardoublepage
%----------------------------------------------------------------------------------------
% QUOTATION PAGE
%----------------------------------------------------------------------------------------
% Include only in the final submission, after the defense and all required corrections
%\vspace*{0.2\textheight}
%\noindent\enquote{\itshape Quote here}\bigbreak
%----------------------------------------------------------------------------------------
% ABSTRACT PAGE
%----------------------------------------------------------------------------------------
\begin{abstract}
\addchaptertocentry{\abstractname} % Add the abstract to the table of contents
\input{chapters/00-abstract}
\vfill
\begin{center}
\textbf{Keywords:}~\keywordnames
\end{center}
\end{abstract}
%----------------------------------------------------------------------------------------
% LIST OF CONTENTS/FIGURES/TABLES + TRANSITION PAGES
%----------------------------------------------------------------------------------------
\hypersetup{linkcolor=black}
\tableofcontents % Prints the main table of contents
\listoffigures % Prints the list of figures
\mainmatter % Begin numeric (1,2,3...) page numbering
\pagestyle{thesis} % Return the page headers back to the "thesis" style
%----------------------------------------------------------------------------------------
% THESIS CONTENT - CHAPTERS
%----------------------------------------------------------------------------------------
\include{chapters/01-introduction}
\include{chapters/02-background}
\include{chapters/03-rmionbmv2}
\include{chapters/04-rmiforp4}
\include{chapters/05-experiments}
\include{chapters/06-conclusions}
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\printbibliography[heading=bibintoc]
%----------------------------------------------------------------------------------------
% APPENDIX
%----------------------------------------------------------------------------------------
\include{chapters/09-appendix}
%----------------------------------------------------------------------------------------
\end{document}