-
Notifications
You must be signed in to change notification settings - Fork 0
/
design.tex
110 lines (82 loc) · 2.23 KB
/
design.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
109
110
\documentclass[11pt]{article}
\usepackage[letterpaper, margin=1in]{geometry}
\usepackage[acronym,nogroupskip,nonumberlist]{glossaries}
\usepackage[style=ieee]{biblatex}
\addbibresource{references.bib}
\usepackage{fixme} % For notes and comments
\usepackage{amsmath} % For math symbols and centering
\usepackage{siunitx} % For SI unit formatting
\usepackage{graphicx} % Include graphics %
\usepackage{float} % Make sure that figures stay where they're defined %
\usepackage{listings} % Code snippets
\lstset{basicstyle=\footnotesize\ttfamily,breaklines=true}
\usepackage{tabularx}
\usepackage{pdfpages} % Include PDFs
% Ensure consistency between displayed PDF title and PDF viewer title %
\def\doctitle{Carleton University InSpace Avionics Systems Design}
% Links %
\usepackage[
pdftitle={\doctitle},
colorlinks=false,
allbordercolors={0 0 0},
citebordercolor={1 1 1}, % No border for citations %
pdfborderstyle={/S/U/W 1},
linktoc=all,
]{hyperref}
\usepackage[nameinlink]{cleveref} % For hyperlinked references
\usepackage{booktabs} % For nicer tables %
% Document font setup %
\usepackage{charter}
% Remove paragraph indentation and use newline to separate instead. %
\usepackage[parfill]{parskip}
\setlength{\parindent}{0cm}
% TITLE PAGE INFORMATION %
\title{
\doctitle \\
\vspace{0.2in}
\includegraphics[width=4in]{./assets/images/inspace-logo.png}
}
\author{
Matteo Golin \\
Roland Neill \\
Emma Rickets \\
Sean Dauphinee \\
Elias Hawa \\
Angus Jull
}
\date{
October 8, 2023 \\
Modified: \today
}
% GLOSSARY %
\input{sections/glossary.tex}
\makeglossaries
% MAIN DOCUMENT %
\begin{document}
% TITLE %
\maketitle
\pagebreak
% TABLE OF CONTENTS %
{
% No link styling in table of contents %
\hypersetup{hidelinks}
\tableofcontents
\listoffigures
}
\pagebreak
\input{sections/introduction.tex}
\input{sections/previous_systems.tex}
\input{sections/telemetry_system.tex}
\include{sections/hybrid_control.tex}
\include{sections/deployment_system.tex}
% GLOSSARY %
\pagebreak
\printglossary[title={Glossary}]
\printglossary[type=\acronymtype,title={Acronyms}]
% BIBLIOGRAPHY %
\pagebreak
\printbibliography
% APPENDIX %
\pagebreak
\input{sections/appendix.tex}
\end{document}