d1e525a4900e68f45390411652c192baefcbb981
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist]{glossaries} % Glossaries and acronyms
3 \usepackage[algochapter]{algorithm2e} % Pseudocode
4 \renewcommand\AlCapFnt{\normalfont}
5 \makeglossaries%
6
7 \input{glossaries}
8
9 \begin{document}
10 \frontmatter{}
11
12 %Titlepage
13 \input{titlepage}
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 \mainmatter{}
36 \glsresetall{}
37 \chapter{Introduction}\label{chp:introduction}
38 \input{intro}
39
40 \chapter{Task Oriented Programming}\label{chp:top}
41 \input{top}
42
43 \chapter{Embedded Domain Specific Languages}\label{chp:dsl}
44 \input{edsl}
45
46 \chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask}
47 \input{mtask}
48
49 \chapter[System Overview]{System Overview}\label{chp:system}
50 \input{system}
51
52 \chapter[Extending the mTask EDSL]%
53 {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont}
54 \input{mtaskext}
55
56 \chapter{System Considerations and Implementation}\label{chp:arch}
57 \input{arch}
58
59 \chapter{Discussion \& Conclusion}\label{chp:conclusion}
60 \input{conclusion}
61
62 \appendix\label{chp:appendix}
63
64 \chapter{Communication Protocol}\label{app:communication-protocol}
65 \input{appendix-protocol}
66
67 \chapter{Device Client Interface}\label{app:device-interface}
68 \input{appendix-device-interface}
69
70 \phantomsection{}
71 \addcontentsline{toc}{chapter}{Bibliography}
72 \bibliographystyle{ieeetr}
73 \bibliography{thesis}
74
75 \addcontentsline{toc}{chapter}{Glossary}
76 \printglossaries%
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}