removed todo, the end is near
[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
14 \glsaddall{}
15
16 %Abstract
17 \addcontentsline{toc}{chapter}{Abstract}
18 \chapter*{\centering Abstract}
19 \begin{quotation}
20 \centering\noindent
21 \input{abstract}
22 \end{quotation}
23
24 \addcontentsline{toc}{chapter}{Acknowledgements}
25 \chapter*{\centering Acknowledgements}
26 \begin{quotation}
27 \centering\it\noindent
28 \input{acknowledgements}
29 \end{quotation}
30
31 %Table of contents
32 \tableofcontents
33
34 \addcontentsline{toc}{chapter}{Glossaries \& Acronyms}
35 \printglossaries%
36
37 \mainmatter{}
38 \glsresetall{}
39 \chapter{Introduction}\label{chp:introduction}
40 \input{introduction}
41
42 \chapter{Task Oriented Programming}\label{chp:top}
43 \input{methods.top}
44
45 \chapter{Embedded Domain Specific Languages}\label{chp:dsl}
46 \input{methods.dsl}
47
48 \chapter{The mTask EDSL}\label{chp:mtask}
49 \input{methods.mtask}
50
51 \chapter{System Architecture}\label{chp:arch}
52 \input{results.arch}
53
54 \chapter{Extending the mTask EDSL}\label{chp:mtaskcont}
55 \input{results.mtask}
56
57 \chapter{Integration with iTasks}\label{chp:itasksint}
58 \input{results.itasks}
59
60 \chapter{Discussion \& Conclusion}\label{chp:conclusion}
61 \input{conclusion}
62
63 \appendix\label{chp:appendix}
64
65 \chapter{Communication protocol}\label{app:communication-protocol}
66 \input{appendix-protocol}
67
68 \chapter{Device client interface}\label{app:device-interface}
69 \input{appendix-device-interface}
70
71 \cleardoublepage{}
72 \phantomsection{}
73 \addcontentsline{toc}{chapter}{Bibliography}
74 \bibliographystyle{ieeetr}
75 \bibliography{thesis}
76
77 \cleardoublepage{}
78 \phantomsection{}
79 \addcontentsline{toc}{chapter}{Lists of \ldots}
80 \begingroup
81 \let\clearpage\relax
82 \let\cleardoublepage\relax
83 \listoffigures%
84 \listoftables%
85 \lstlistoflistings%
86 \listofalgorithms%
87 \endgroup
88
89 \end{document}