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