This repository has been archived by the owner on Jun 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy paththesis.tex
94 lines (80 loc) · 3.33 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
% Maastricht University Thesis Template
%
% Developed for my Master Thesis at Maastricht University.
% Based on Eugenio Senes's template at the University of Torino.
%
% By Joeri Hermans (joeri@joerihermans.com)
%
% Released under an MIT license. Share, modify and enjoy, but quote the author!
\documentclass[10pt, a4paper, oneside]{book}
% Define the packages.
% Packages are mostly based on the NIPS (Neural Information Processing Systems) requirements.
\usepackage[T1]{fontenc} % Use 8-bit T1 fonts
\usepackage[english]{babel} % Set English as main language
\usepackage[utf8]{inputenc} % Allow utf-8 input
\usepackage{amsfonts} % Blackboard math symbols
\usepackage{amsmath} % AMS Math
\usepackage{amssymb} % AMS Symbols
\usepackage{booktabs} % Professional-quality tables
\usepackage{caption} % Captions
\usepackage{float} % Float control
\usepackage{geometry} % Easily define margins
\usepackage{graphicx} % Graphic materials (e.g., images)
\usepackage[hidelinks]{hyperref} % Hyperlinks
\usepackage{microtype} % Microtypography
\usepackage{rotating} % Allow page rotation (e.g., for large table)
\usepackage{tikz} % Drawings
\usepackage{url} % Simple URL typesetting
%% BIBLIOGRAPHY
\usepackage[babel]{csquotes}
%% CODE LISTINGS
\usepackage{listings} %%allow to use code listings
% Define page structure using Geometry.
% For printing, set right to 35mm
\geometry{a4paper, portrait, left=35mm, right=20mm, top=35mm, bottom=30mm}
\graphicspath{{resources/images/}}
%% CLEAR PAGE WITHOUT NUMBER AT THE BEGINNING OF CHAPTERS
\let\origdoublepage\cleardoublepage
\newcommand{\clearemptydoublepage}{%
\clearpage
{\pagestyle{empty}\origdoublepage}%
}
% Define the core properties of your thesis.
\title{Superfancy title goes here} % Title of the thesis
\author{YOUR NAME HERE} % Author name
\date{\today} % Publishing date
\def \university{Maastricht University} % University name
\def \universitycity{Maastricht} % University city
\def \universitycountry{The Netherlands} % University country
\def \faculty{Faculty of Science and Engineering} % Faculty
\def \department{Department of Data Science \& Knowledge Engineering} % Department name
\def \universitylogo{logo_university.png} % University logo file
\def \studylevel{Master} % Level of study (Bachelor/Master)
\def \studydegree{Artificial Intelligence} % Degree name (level of study autofilled)
% Load the macros.
\input{utils/macros.tex}
\begin{document}
\frontmatter
\let\cleardoublepage\clearpage
\input{head/cover_page}
%\input{head/dedication}
\input{head/acknowledgements}
\input{head/abstract}
\input{head/summary}
\tableofcontents
\mainmatter
\input{body/introduction}
\input{body/chapter_1}
%%%% TAIL OF THE DOCUMENT
\backmatter
%list of figures
\listoffigures
\clearemptydoublepage
%list of tables
\listoftables
\clearemptydoublepage
%bibliography
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{bibliography/bibliography_thesis}
\bibliographystyle{apalike}
\end{document}