-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
108 lines (86 loc) · 1.96 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
\documentclass[a4paper,11pt,oneside]{report}
\usepackage{float}
\usepackage{chngpage}
\usepackage{acro}
\usepackage{subcaption}
\usepackage{minted}
\usepackage{bm}
\usepackage{nameref}
\usepackage{hyperref}
\usepackage{etoolbox}
\usepackage{dirtree}
\usepackage{amsmath}
\usepackage{appendix}
\usepackage[htt]{hyphenat}
\usepackage[linesnumbered, ruled, vlined]{algorithm2e}
\usepackage[table,x11names]{xcolor}
\usepackage[english]{./_template/disal_report_template}
% Configuration for `algorithm2e`
\newcommand\mycommfont[1]{\footnotesize\ttfamily\textcolor{blue}{#1}}
\SetCommentSty{mycommfont}
% Configuration for `acro`
\input{_acronyms}
% Command `keywords`
\providecommand{\keywords}[1]{\textbf{\textit{Keywords---}} #1}
% Colors
\definecolor{llgray}{rgb}{0.9,0.9,0.9}
\title{ROS2 Programming Interface for the E-puck2 Robot}
\shorttitle{ROS2 Programming Interface for the E-puck2 Robot}
\author{Darko Lukic}
\semester{SS}
\year{2020}
\epflsection{MT-S}
\reportnumber{DISAL-MP44}
\startdate{17.02.2020}
\enddate{14.08.2020}
\professor{Alcherio Martinoli}
\advisor{David Mansolino, Cyrill Baumann and Olivier Michel}
\coverimage{./_template/project_logo.png}
\begin{document}
% First page
\maketitle
% Empty page
\newpage
\
\newpage
% Abstract
\input{abstract}
% Empty page
\newpage
\
\newpage
% Acknowledgments
\input{acknowledgments}
% Empty page
\newpage
\
\newpage
% Table of Contents
\newpage
\tableofcontents
\newpage
% Acronyms
\printacronyms
% List of Figures
\listoffigures
% List of Tables
\listoftables
% Content
\input{introduction/introduction}
\input{background/background}
\input{simulation/simulation}
\input{physical/physical}
\input{demos/demos}
\input{generalization/generalization}
\input{results/results}
\input{conclusion/conclusion}
% Bibliography
\cleardoublepage
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{_references}
\nocite{*}
\bibliographystyle{IEEEtran}
%\bibliographystyle{alpha}
% Appendix
\input{appendix/appendix}
\end{document}