elaborate on communication
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist]{glossaries} % Glossaries and acronyms
3 \usepackage[]{algorithm2e} % Pseudocode
4 \makeglossaries%
5
6 \input{glossaries}
7
8 \begin{document}
9 \frontmatter{}
10
11 %Titlepage
12 \input{titlepage}
13 \listoftodos[Todo]
14
15 \glsaddall{}
16
17 %Abstract
18 \addcontentsline{toc}{chapter}{Abstract}
19 \chapter*{\centering Abstract}
20 \begin{quotation}
21 \centering\noindent
22 \input{abstract}
23 \end{quotation}
24
25 \addcontentsline{toc}{chapter}{Acknowledgements}
26 \chapter*{\centering Acknowledgements}
27 \begin{quotation}
28 \centering\it\noindent
29 \input{acknowledgements}
30 \end{quotation}
31
32 %Table of contents
33 \tableofcontents
34
35 \addcontentsline{toc}{chapter}{Glossaries \& Acronyms}
36 \printglossaries%
37
38 \mainmatter{}
39 \glsresetall{}
40 \chapter{Introduction}\label{chp:introduction}
41 \input{introduction}
42
43 \chapter{Task Oriented Programming}\label{chp:top}
44 \input{methods.top}
45
46 \chapter{Embedded Domain Specific Language}\label{chp:dsl}
47 \input{methods.dsl}
48
49 \chapter{mTask}\label{chp:mtask}
50 \input{methods.mtask}
51
52 \chapter{Architecture}\label{chp:arch}
53 \input{results.arch}
54
55 \chapter{mTask continued}\label{chp:mtaskcont}
56 \input{results.mtask}
57
58 \chapter{iTasks}\label{chp:itasksint}
59 \input{results.itasks}
60
61 \chapter{Conclusion \& Discussion}\label{chp:conclusion}
62 \input{conclusion}
63
64 \appendix%
65 \label{chp:appendix}
66
67 \chapter{Communication protocol}\label{app:communication-protocol}
68 \input{appendix-protocol}
69
70 \chapter{Device client interface}\label{app:device-interface}
71 \input{appendix-device-interface}
72
73 \cleardoublepage{}
74 \phantomsection{}
75 \addcontentsline{toc}{chapter}{Bibliography}
76 \bibliographystyle{ieeetr}
77 \bibliography{thesis}
78
79 \cleardoublepage{}
80 \phantomsection{}
81 \addcontentsline{toc}{chapter}{Lists of \ldots}
82 \begingroup
83 \let\clearpage\relax
84 \let\cleardoublepage\relax
85 \listoffigures%
86 \listoftables%
87 \lstlistoflistings%
88 \listofalgorithms%
89 \endgroup
90
91 \printindex
92
93 \end{document}