-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpreamble.tex
103 lines (88 loc) · 2.48 KB
/
preamble.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
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{blindtext} % TODO Remove
\usepackage{changes}
\usepackage[nameinlink,capitalise]{cleveref}
\usepackage{enumitem}
\usepackage{amsbsy}
\usepackage{afterpage}
\usepackage{hyperref}
\usepackage[acronym]{glossaries} % toc does not work properly
\usepackage{siunitx}
\usepackage{subcaption}
\usepackage{thmtools}
\usepackage{tikz}
\usepackage{minibox}
\usetikzlibrary{automata,arrows,shapes}
\makeglossaries
\graphicspath{{./figures/}}
%% Glossary and Acronyms %%
\input{acronyms}
\input{glossary}
\newcommand\mat[1]{\pmb{#1}}
\newcommand\arr[1]{\pmb{#1}}
\DeclareMathOperator*{\argmax}{arg\,max}
%% Custom Definitions %%
% Algorithm line reference
\makeatletter
\patchcmd{\ALG@step}{\addtocounter{ALG@line}{1}}{\refstepcounter{ALG@line}}{}{}
\newcommand{\ALG@lineautorefname}{Line}
\makeatother
\def\subsubsectionautorefname{Section}
\def\subsectionautorefname{Section}
\def\sectionautorefname{Section}
\def\chapterautorefname{Chapter}
\def\algorithmautorefname{Algorithm}
%\declaretheoremstyle[bodyfont=\normalfont]{normalbody}
%\declaretheorem[style=normalbody,name=Definition]{definition}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\newtheorem*{problem}{Problem Statement}
%% Pseudocode settings %%
\newcommand*\Let[2]{\State #1 $\gets$ #2}
\algrenewcommand{\algorithmiccomment}[1]{\hfill$\rhd$ #1} % Fix for comments in pseudocode
\hyphenation{algorithms}
\hyphenation{Considering}
\hyphenation{formulation}
\hyphenation{Furthermore}
\hyphenation{offline}
\hyphenation{policy}
\hyphenation{planning}
\hyphenation{solutions}
%% Title and Cover Pages %%
%% Use Roman numerals for the page numbers of the title pages and table of
%% contents.
\frontmatter
%% Uncomment following 16 lines for a cover with a picture on the lower half only
\title[tudelft-white]{Learning and Optimizing Probabilistic Models for Planning Under Uncertainty} %in Mobile Robot Navigation}
%\subtitle[tudelft-black]{Optional subtitle}
\author[tudelft-white]{R. van Bekkum}
\affiliation{Delft University of Technology}
\coverimage{figures/tank.jpg}
\covertext[tudelft-white]{
\textbf{Cover Text} \\
possibly \\
spanning
multiple
lines
\vfill
ISBN 000-00-0000-000-0
}
\setpagecolor{tudelft-cyan}
%\makecover[split]
% TEMPORARY
\newcommand{\showoutline}[1]{
\vspace{0.3cm}
\hrule
\vspace{0.3cm}
{\large\textbf{PLANNED OUTLINE}:}
\vspace{0.3cm}
\hrule
\vspace{0.3cm}
{#1}
\vspace{0.3cm}
\hrule
\vspace{0.3cm}
}