-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.tex
77 lines (55 loc) · 1.44 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
\documentclass[parskip=half, twoside=false]{scrreprt}
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\usepackage{graphicx}
\usepackage{url}
\usepackage{verbatim}
\usepackage{siunitx} %For degree symbol etc.
\DeclareSIUnit\bar{bar}
\usepackage[table,xcdraw]{xcolor}
\usepackage{geometry} %packages für gescheite A4 Seite
\usepackage{lscape} %to have tables in landscape mode
\usepackage{float} %to place figures where they are in the source with [H]
\usepackage{pdfpages} %to insert pdfs for appendices
\usepackage[caption = false]{subfig}
\restylefloat{table} %makes [H] possible for tables as well
\setcounter{secnumdepth}{4}
\geometry
{
paper = {a4paper},
ignoreheadfoot,
hmargin = {20mm},
vmargin = {25mm},
headsep = {5mm},
footskip = {\dimexpr5mm+\normalbaselineskip},
headheight = {10mm},
}
\usepackage{hyperref}
\usepackage{cleveref}
\newcommand{\uH}{$\mu$Houbolt }
\title{\boldmath{$\mu$}Houbolt Technical Report}
\subtitle{Team 25 Technical Report to the 2022 EuRoC}
\author{TU Wien Space Team}
\date{2022}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\input{Abstract/Abstract}
\newpage
\input{Introduction/Introduction}
\newpage
\input{SysArch/SysArch}
\newpage
\input{ConOps/ConOps}
\newpage
\input{Conclusion/Conclusion}
\newpage
\input{Appendices/Appendices}
\newpage
\renewcommand{\bibname}{References}
\bibliographystyle{plain}
\bibliography{references}
\end{document}