Merge branch 'master' of git.martlubbers.net:msc-thesis1617
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist]{glossaries} % Glossaries and acronyms
3 \usepackage[algochapter]{algorithm2e} % Pseudocode
4
5 % Fix the algorithm font
6 \renewcommand\AlCapFnt{\normalfont}
7
8 % Initialize the glossaries
9 \makeglossaries%
10 \input{glossaries}
11
12 \begin{document}
13 \frontmatter{}
14
15 %Titlepage
16 \input{titlepage}
17
18 %Abstract
19 \chapter*{\centering Abstract}
20 \addcontentsline{toc}{chapter}{Abstract}
21 \begin{quotation}
22 \centering\noindent
23 \input{abstract}
24 \end{quotation}
25
26 %Acknowledgements
27 \chapter*{\centering Acknowledgements}
28 \addcontentsline{toc}{chapter}{Acknowledgements}
29 \begin{quotation}
30 \centering\it\noindent
31 \input{acknowledgements}
32 \end{quotation}
33
34 %Table of contents
35 \tableofcontents
36
37 \mainmatter{}
38
39 %Reset glossary and thus the acronyms
40 \glsresetall{}
41
42 \chapter{Introduction}\label{chp:introduction}
43 \input{intro}
44
45 \chapter{Task Oriented Programming}\label{chp:top}
46 \input{top}
47
48 \chapter{Embedded Domain Specific Languages}\label{chp:dsl}
49 \input{edsl}
50
51 \chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask}
52 \input{mtask}
53
54 \chapter[System Overview]{System Overview}\label{chp:system}
55 \input{system}
56
57 \chapter[Extending the mTask EDSL]%
58 {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont}
59 \input{mtaskext}
60
61 \chapter{System Considerations \& Implementation}\label{chp:arch}
62 \input{arch}
63
64 \chapter{Discussion \& Conclusion}\label{chp:conclusion}
65 \input{conclusion}
66
67 \appendix%
68 \label{chp:appendix}
69
70 \chapter{Communication Protocol}\label{app:communication-protocol}
71 \input{appendix-protocol}
72
73 \chapter{Device Client Interface}\label{app:device-interface}
74 \input{appendix-device-interface}
75
76 % Bibliography
77 \phantomsection{}
78 \addcontentsline{toc}{chapter}{Bibliography}
79 \bibliographystyle{ieeetr}
80 \bibliography{thesis}
81
82 % Glossary
83 \addcontentsline{toc}{chapter}{Glossary}
84 \printglossaries%
85
86 % Lists of
87 \cleardoublepage{}
88 \phantomsection{}
89 \addcontentsline{toc}{chapter}{Lists of \ldots}
90 \begingroup
91 \let\clearpage\relax
92 \let\cleardoublepage\relax
93 \listoffigures%
94 \listoftables%
95 \listofalgorithms%
96 \lstlistoflistings%
97 \endgroup
98
99 \end{document}