-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
66 lines (49 loc) · 1.27 KB
/
report.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
% Paper, encoding and fonts settings
\documentclass[a4paper]{report}
\usepackage{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{polski}
\usepackage{indentfirst}
\usepackage[polish]{babel}
% Graphics
\usepackage{graphicx}
\graphicspath{{./graphics/}}
\usepackage{booktabs}
% Math, physics and numbers
\usepackage{amsmath}
\usepackage{siunitx}
% Proper decimal separation
\usepackage{icomma}
% Listings
\usepackage{minted}
% Make sure that hyperref is last loaded package
\usepackage[hidelinks]{hyperref}
% Captions in subfigures
\usepackage{caption}
\usepackage{subcaption}
% There is no Polish locale for units, French is the closest one
\sisetup{locale = FR}
\author{Wojciech Ptasiński \and Maciej Ziaja}
\title{Raport z~projektu indywidualnej organizacji studiów}
\begin{document}
\maketitle
\tableofcontents
% Chapters
\chapter{Wstęp}
\input{chapters/introduction}
\chapter{Środowisko prototypowania robotów ROS}
\input{chapters/ros}
\chapter{Filtr Kalmana i system AHRS}
\input{chapters/ahrs}
\chapter{Odometria robota}
\input{chapters/odometry}
\chapter{System wizyjny}
\input{chapters/vision}
\chapter{Analiza biznesowa}
\input{chapters/business}
\chapter{Podsumowanie}
\input{chapters/summary}
% Lists of objects
\listoffigures
\end{document}