-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.tex
63 lines (45 loc) · 1.15 KB
/
spec.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
\documentclass[10pt]{article}
% Page geometry
\usepackage{geometry}{
\geometry{
a4paper
}
}
% Document title
\def\doctitle{Hybrid Control System Packet Format}
\usepackage[defaultfam,tabular,lining]{montserrat} % Font
% Link configuration
\usepackage[
pdftitle={\doctitle},
pdfborderstyle={/S/U/W 1},
allbordercolors={0 0 0},
citebordercolor={1 1 1}, % No border for citations %
]{hyperref}
\usepackage{bytefield} % For illustrations of bit fields
\usepackage{float} % For positioning of figures and tables
\usepackage{graphicx} % For images
% Remove paragraph indentation and use newline to separate instead. %
\usepackage[parfill]{parskip}
\setlength{\parindent}{0cm}
% Title page information
\title{\doctitle}
\author{
\includegraphics[width=150pt]{logo.png} \\
Matteo Golin \\
\texttt{[email protected]}
}
\date{
Created: September 8th, 2024 \\
Modified: \today
}
\begin{document}
% Title
\maketitle
\pagebreak
% Content sections
\input{sections/overview.tex}
\input{sections/header.tex}
\input{sections/control.tex}
\input{sections/telemetry.tex}
\input{sections/arming_logic.tex}
\end{document}