-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
182 lines (135 loc) · 3.73 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
\documentclass{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Template by Tuur Vanhoutte %
% https://github.com/zjeffer/howest-thesis-template %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Package importing %%%%%
\usepackage[english]{babel}
\usepackage[margin=1.5cm]{geometry}
\usepackage{graphicx}
\usepackage{float}
\usepackage{caption}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{wrapfig}
\usepackage[parfill]{parskip}
\usepackage{eso-pic}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{tcolorbox}
\usepackage{enumitem}
\usepackage{changepage}
%%%%% Change fonts here %%%%%
\usepackage[T1]{fontenc}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\graphicspath{{img/}}
%%%%% \theorem environment %%%%%
\usepackage{amssymb}
\newtheorem{theorem}{Definition}[section]
\newenvironment{thmenum}
{\begin{enumerate}[label=\upshape\bfseries(\roman*)]}
{\end{enumerate}}
%%%%% Styled code block %%%%%
\usepackage{minted}
\setminted{frame=single,framesep=3pt,linenos}
\usepackage{upquote}
\usepackage{color}
%%%%% TOC styling %%%%%
\makeatletter
\renewcommand\tableofcontents{%
\null\hfill\textbf{\Huge\contentsname}\hfill\null\par
\vline\noexpand\rule{\textwidth}{1pt}%
\@mkboth{\MakeUppercase\contentsname}{\MakeUppercase\contentsname}%
\@starttoc{toc}%
}
\makeatother
\begin{document}
%%%%% title page %%%%%
\begin{titlepage}
\newgeometry{margin=0cm}
\begin{center}
%%%%% Change the cover image here %%%%%
\includegraphics[width=18.5cm,height=18.5cm]{example-image}
\end{center}
\begin{adjustwidth}{1.5cm}{1.5cm}
\vspace{0.5em}
\MakeUppercase{\huge\textbf{Thesis title}}
\MakeUppercase{\Large\textit{Optional subtitle}}
\vspace{1em}
\MakeUppercase{Interal promotor: <name here>}
\MakeUppercase{External promotor: <name here>}
\vspace{1em}
\MakeUppercase{\small{Research conducted by}}
\MakeUppercase{\Large\textbf{{Author}}}
\MakeUppercase{\small{for obtaining a bachelor's degree in}}
\MakeUppercase{\Large{\textbf{{Multimedia \& Creative Technologies}}}}
\MakeUppercase{Howest | 2021-2022}
\end{adjustwidth}
\end{titlepage}
\newgeometry{margin=2cm}
%%%%% Set pagenumbering from here %%%%%
\pagenumbering{arabic}
%%%%% Preface %%%%%
\section*{Preface}
\addcontentsline{toc}{section}{Preface}
\newpage
%%%%% Abstract %%%%%
\section*{Abstract}
\addcontentsline{toc}{section}{Abstract}
\newpage
%%%%% Table of contents %%%%%
\addcontentsline{toc}{section}{Contents}
\tableofcontents
\newpage
%%%%% List of figures %%%%%
\newpage
\section*{List of figures}
\addcontentsline{toc}{section}{List of figures}
%%%%% List of abbreviations %%%%%
\newpage
\section*{List of abbreviations}
\addcontentsline{toc}{section}{List of abbreviations}
%%%%% Glossary %%%%%
\newpage
\section*{Glossary}
\addcontentsline{toc}{section}{Glossary}
%%%%% Introduction %%%%%
\newpage
\setcounter{section}{0}
\section{Introduction}
%%%%% Add Howest background %%%%%
\AddToShipoutPicture{
\ifnum\value{page}>0
\AtPageLowerLeft{
\raisebox{3\baselineskip}{\makebox[0.25\paperwidth]{
\begin{minipage}{21cm}\centering
\includegraphics{img/background.png}
\end{minipage}}}
}
\fi
}
%%%%% Research %%%%%
\newpage
\section{Research}
%%%%% Technical research %%%%%
\newpage
\section{Technical research}
%%%%% Reflection %%%%%
\newpage
\section{Reflection}
%%%%% Advice %%%%%
\newpage
\section{Advice}
%%%%% Conclusion %%%%%
\newpage
\section{Conclusion}
%%%%% Bibliography %%%%%
\newpage
\section{Bibliography}
%%%%% Appendix %%%%%
\newpage
\section{Appendix}
\end{document}