-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.tex
executable file
·44 lines (37 loc) · 1.26 KB
/
master.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
\input{setup/preamble.tex}% package inclusion and set up of the document
\input{setup/hyphenations.tex}%
\input{setup/macros.tex}% my new macros
\begin{document}
%use this as \OSname{} to avoid problems with the space after the macro
\newcommand{\OSname}{Open653}
\newcommand{\arinc}{ARINC 653}
%frontmatter
\pagestyle{empty} %disable headers and footers
\pagenumbering{roman} %use roman page numbering in the front matter
\input{sections/frontpage.tex}
\input{sections/colophon.tex}
\input{sections/titlepages.tex}
\input{sections/preface.tex}
\input{sections/reading_guide.tex}
\cleardoublepage
\pdfbookmark[0]{Contents}{label:contents}
\pagestyle{fancy} %enable headers and footers again
\tableofcontents
\cleardoublepage
%mainmatter
\pagenumbering{arabic} %use arabic page numbering in the mainmatter
\input{sections/introduction.tex}
\input{sections/analysis.tex}
\input{sections/problem_statement.tex}
\input{sections/system_design.tex}
\input{sections/system_implementation.tex}
\input{sections/testing.tex}
\input{sections/conclusion.tex}
\printbibliography[heading=bibintoc]
\label{bib:mybiblio}
\appendix
\input{sections/appA_embedded_devices.tex}
\input{sections/appB_hardware_setup.tex}
\input{sections/appC_tutorial.tex}
\input{sections/appD_forum.tex}
\end{document}