This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
159 lines (139 loc) · 3.97 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
\documentclass[12pt, a4paper]{report}
%%
% Package imports
%%
\usepackage[utf8]{inputenc}
\usepackage{import}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{afterpage}
\usepackage{titlesec}
\usepackage{float}
\usepackage{multirow}
\usepackage[autostyle]{csquotes}
\usepackage{longtable}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\usepackage[nonumberlist]{glossaries}
\usepackage{listings}
\usepackage[titles]{tocloft}
\usepackage[
backend=biber,
style=alphabetic,
]{biblatex}
\usepackage{hyperref}
%%
% Other setups
%%
\addbibresource{./references.bib}
% Lines around chapter names
\titleformat{\chapter}[display]
{\bfseries\huge}
{\filleft\Large\chaptertitlename~\thechapter}
{3ex}
{\titlerule\vspace{1.5ex}\filright}
[\vspace{1ex}\titlerule]
\graphicspath{ {images/} }
\newlength\mylength
\renewcommand\cftchappresnum{\chaptername~}
\renewcommand\cftchapaftersnum{:}
\settowidth\mylength{\cftchappresnum\cftchapaftersnum\quad}
\addtolength\cftchapnumwidth{\mylength}
% Default listing style
\lstdefinestyle{default}{
captionpos=b,
}
\lstset{style=default}
% Only include chapters, sections in ToC
% \setcounter{tocdepth}{1}
%%
% Local imports
%%
\input{definitions.tex}
\input{tikz.tex}
%%
% Glossary
%%
\makeglossaries
\input{glossary.tex}
\begin{document}
%------------------------------------------------
% Titlepage
%------------------------------------------------
\import{chapters/}{titlepage.tex}
\afterpage{\blankpage}
%#@@@@@@@
%# Thesis Preamble
%#@@@@@@@@@@@@@@@
\pagenumbering{roman} % Roman numbering for preamble only
%------------------------------------------------
% Foreword
%------------------------------------------------
%\chapter*{Acknowledgements}
%\import{chapters/}{foreword.tex}
%\afterpage{\blankpage}
%------------------------------------------------
% Abstract
%------------------------------------------------
\chapter*{Abstract}
\import{chapters/}{abstract.tex}
\afterpage{\blankpage}
%------------------------------------------------
% ToC
%------------------------------------------------
\tableofcontents
\newpage
\afterpage{\blankpage}
%#@@@@@@@
%# Beginning of Thesis
%#@@@@@@@@@@@@@@@
\pagenumbering{arabic} % Regular page numbering for chapters
%------------------------------------------------
% Introduction
%------------------------------------------------
\chapter{Introduction} \label{chapter:introduction}
\import{chapters/}{introduction.tex}
%------------------------------------------------
% Previous work
%------------------------------------------------
\chapter{Related work} \label{chapter:related}
\import{chapters/}{previouswork.tex}
%------------------------------------------------
% Theory/Background
%------------------------------------------------
\chapter{Theory} \label{chapter:theory}
\import{chapters/}{theory.tex}
%------------------------------------------------
% Implementation
%------------------------------------------------
\chapter{Implementation} \label{chapter:implementation}
\import{chapters/}{implementation.tex}
%------------------------------------------------
% Evaluation
%------------------------------------------------
\chapter{Evaluation} \label{chapter:evaluation}
\import{chapters/}{evaluation.tex}
%------------------------------------------------
% Discussion
%------------------------------------------------
\chapter{Discussion} \label{chapter:discussion}
\import{chapters/}{discussion.tex}
%------------------------------------------------
% Conclusion
%------------------------------------------------
\chapter{Conclusion} \label{chapter:conclusion}
\import{chapters/}{conclusion.tex}
%------------------------------------------------
% Glossary
%------------------------------------------------
\glsaddall
\printglossary
\addcontentsline{toc}{chapter}{Glossary}
%------------------------------------------------
% References
%------------------------------------------------
\onecolumn
\addcontentsline{toc}{chapter}{References}
\printbibliography[title = {References}]
\end{document}