chapter names
[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{The mTask EDSL}\label{chp:mtask}
50 \input{methods.mtask}
51
52 \chapter{System Architecture}\label{chp:arch}
53 \input{results.arch}
54
55 \chapter{Extending the mTask EDSL}\label{chp:mtaskcont}
56 \input{results.mtask}
57
58 \chapter{Integration with iTasks}\label{chp:itasksint}
59 \input{results.itasks}
60
61 \chapter{Conclusion \& Discussion}\label{chp:conclusion}
62 \input{conclusion}
63
64 \appendix\label{chp:appendix}
65
66 \chapter{Communication protocol}\label{app:communication-protocol}
67 \input{appendix-protocol}
68
69 \chapter{Device client interface}\label{app:device-interface}
70 \input{appendix-device-interface}
71
72 \cleardoublepage{}
73 \phantomsection{}
74 \addcontentsline{toc}{chapter}{Bibliography}
75 \bibliographystyle{ieeetr}
76 \bibliography{thesis}
77
78 \cleardoublepage{}
79 \phantomsection{}
80 \addcontentsline{toc}{chapter}{Lists of \ldots}
81 \begingroup
82 \let\clearpage\relax
83 \let\cleardoublepage\relax
84 \listoffigures%
85 \listoftables%
86 \lstlistoflistings%
87 \listofalgorithms%
88 \endgroup
89
90 \end{document}