-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.tex
More file actions
124 lines (90 loc) · 3.15 KB
/
Copy pathreport.tex
File metadata and controls
124 lines (90 loc) · 3.15 KB
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PhD Thesis Main File
% Author: Humphrey Curtis
% Version: 1.0
%
% License:
% Unless otherwise stated, this work is licensed under
% Creative Commons Attribution 4.0 International (CC BY 4.0).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt, twoside, a4paper]{report}
% ----------------------------------------------------------
% Page layout
% ----------------------------------------------------------
\usepackage[margin=1in]{geometry}
% Custom package imports
\input{packages}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ==========================================================
% Cover Page
% ==========================================================
\thispagestyle{empty}
\begin{center}
\begin{center}
\includegraphics[scale=0.4]{unibaslogo.png}
\end{center}
{\large University of Basel}
\vspace*{1in}
{\huge \textbf{Compiling Numeric Planning\\ to Classical Planning }}\\[0.2in]
\vspace{1in}
{\Large \textbf{Eda Erkek}}\\[0.2in]
{\Large Supervisors: Florian Pommerening}\\
{\Large \& Gustavo Delazeri}\\[0.2in]
Department of Mathematics and Informatics\\[0.2in]
Bachelor Thesis\\
\today
\end{center}
\pagenumbering{arabic}
% ==========================================================
% Front Matter
% ==========================================================
\clearpage
\phantomsection
\addcontentsline{toc}{part}{Abstract}
\include{FrontMatter/abstract}
\phantomsection
\addcontentsline{toc}{part}{Acknowledgements}
\include{FrontMatter/acknowledgements}
%==========================================================
% Page Style (Headers & Footers)
% ==========================================================
\fancyhf{}
\pagestyle{fancy}
\setlength{\headheight}{15pt}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\fancyhead[L]{\nouppercase\leftmark}
\fancyfoot[C]{\thepage}
% ==========================================================
% Table of Contents & Lists
% ==========================================================
\tableofcontents
\clearpage
\pagenumbering{arabic}
\fancyhead[R]{\textit{\nouppercase\rightmark}}
% ==========================================================
% Main Thesis Content
% ==========================================================
\include{Chapters/Introduction}
\include{Chapters/chapter-2/Background}
\include{Chapters/chapter-3/Methodology}
\include{Chapters/chapter-4/Results}
\include{Chapters/chapter-5/Conclusion}
% ==========================================================
% Bibliography
% ==========================================================
\clearpage
\addcontentsline{toc}{part}{Bibliography}
\renewcommand{\bibname}{Bibliography}
\bibliographystyle{plainnat}
\bibliography{references}
% ==========================================================
% Appendices
% ==========================================================
\appendix
\include{Appendices/appendix-1}
\include{Appendices/appendix-2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%