-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
122 lines (87 loc) · 2.31 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
% \documentclass[titlepage,twoside,openright,a4]{report}
\documentclass[titlepage,a4]{report}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor} % Before listings
\usepackage{amsmath} % Better matrix environment
\usepackage{amssymb}
\usepackage[inline]{enumitem} % inline numbering and resume numbering
\usepackage{etoolbox} % If conditions
% Title page stuff
\usepackage[pdftex]{graphicx}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\usepackage{listings} % for code
\usepackage{nth}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\usepackage{cleveref} % Must be loaded after hyperref
\usepackage[font=small,labelfont=bf]{caption}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.10}
\usepackage{subcaption}
\usepackage{svg}
\usepackage{tikz}
\usepackage{tikz-qtree,tikz-qtree-compat} % Trees
\usepackage{url}
\usepackage{xkeyval}
\usepackage{floatrow} % center floats
\usepackage{relsize}
% \usepackage{arydshln} % Dashed lines in tables
% Make bibliography appear in table of contents
\usepackage[nottoc,numbib]{tocbibind}
% TOC
\setcounter{tocdepth}{1}
% Image directory
\graphicspath{{images/intro/}}
\pdfoptionpdfminorversion=5
% Squiggly lines
\usetikzlibrary{decorations.pathmorphing}
% Node shapes
\usetikzlibrary{shapes,decorations}
% Coordinate calculation
\usetikzlibrary{calc}
% For charts
\usetikzlibrary{patterns}
% Arrowheads
\usetikzlibrary{arrows.meta}
% Cross-table arrows
\usetikzlibrary{matrix, positioning}
\input{variables}
\begin{document}
% Title page etc
\input{title}
\input{abstract}
\input{thanks}
\tableofcontents
\chapter{Introduction}
\input{intro}
\chapter{Background}
\input{background}
\chapter{Related works}
\input{related-works}
\chapter{Diving into the problem}
\input{mesh}
\chapter{Structure growth algorithms}
\input{rectangle-growth-strategy}
\chapter{The length-first search algorithm}
\input{detect_quad_grid}
\chapter{Exposing structure}
\input{recharting-the-maps}
\chapter{Exploiting structure}
\input{exploit-structure}
\chapter{Implementation}
\input{implementation}
\chapter{Evaluation}
\input{evaluation}
\chapter{Conclusion}
\input{conclusion}
\chapter{Future works}
\input{future-works}
\nocite{*} % Show all Bib-entries
\bibliographystyle{plainurl}
\bibliography{thesis}
\end{document}