-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
112 lines (84 loc) · 2.33 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
\documentclass[11pt, twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{caption}
\usepackage{cite}
\usepackage{subcaption}
\usepackage[colorlinks,urlcolor=blue,linkcolor=blue,citecolor=blue]{hyperref}
\usepackage{color}
\usepackage{tikz}
\usepackage{fancyvrb}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage[noend]{algpseudocode}
\usepackage{lscape}
\usepackage{afterpage}
\usepackage{xcolor}
\definecolor{cverbbg}{gray}{0.95}
\usepackage{listings}
\lstset{basicstyle=\ttfamily\small, flexiblecolumns, backgroundcolor=\color{cverbbg}, mathescape, breaklines, escapechar=\\}
\usepackage{lipsum}
\usepackage{tabularx}
\renewcommand{\arraystretch}{1.2}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Fixed-shape Moving Regions in MobilityDB}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,RE]{Chapter \thechapter}
\newcommand{\note}[1]{\textcolor{red}{[#1]}}
\newcommand{\eqtab}{\;\;\;\;\;\;}
\title{Master Thesis}
\author{Maxime Schoemans}
\date{2019 - 2020}
\begin{document}
\input{cover}
\thispagestyle{empty}
\chapter*{Résumé}
\input{intro/resume}
\thispagestyle{empty}
\chapter*{Abstract}
\input{intro/abstract}
\thispagestyle{empty}
\chapter*{Acknowledgments}
\input{intro/acknowledgments}
\thispagestyle{empty}
\clearpage
\pagenumbering{roman}
\setcounter{page}{1}
\tableofcontents
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{Introduction}
\input{chapters/introduction}
\chapter{Systems Used}
\input{chapters/systems}
\chapter{Moving Regions}
\input{chapters/moving_regions}
\chapter{Implementation}
\input{chapters/tgeometry_types}
\input{chapters/rtransform_functions}
\input{chapters/general_functions}
\input{chapters/internal_functions}
\chapter{Future Work}
\input{chapters/tgeography_and_tgeompoint}
\input{chapters/3d_regions}
\input{chapters/deforming_regions}
\chapter{Summary}
\input{chapters/summary}
\bibliographystyle{ieeetr}
\bibliography{references}
\appendix
\chapter{Complete List of Transformation Functions}
\input{appendices/complete_funct_tables}
\end{document}