blob: 339f0b16f7d486381a6572f511dfdb638f75f434 (
plain)
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
|
\documentclass[10pt, a4paper]{report}
\input{headers}
\begin{document}
\pagenumbering{gobble}
\input{titlepage}
\input{contact}
\pagenumbering{roman}
\setcounter{page}{1}
\input{abstract}
\input{revisions}
\setcounter{tocdepth}{2}
\tableofcontents
\input{introduction}
\input{background}
\input{heartbeat}
\input{serverlist}
\input{status}
\input{implementation}
\input{website}
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{unsrt}
\bibliography{references}
\input{credits}
\begin{appendices}
\input{usermanual}
\input{protocolreference}
\input{gameoverview}
\end{appendices}
\end{document}
|