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