add pseudocode for the engine
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist,acronyms]{glossaries} % Glossaries and acronyms
3 \usepackage[]{algorithm2e} % Pseudocode
4 \makeglossaries%
5
6 \input{acronyms}
7 \input{glossaries}
8
9 \begin{document}
10 \frontmatter{}
11
12 %Titlepage
13 \maketitleru[
14 pagenr=1,
15 course={Master Thesis},
16 institute={Radboud University Nijmegen},
17 authorstext={Author:},
18 righttextheader={Supervisors:},
19 righttext={prof.~dr.~dr.h.c.~ir.~M.J.~Plasmeijer\\dr.~P.W.M.~Koopman}]
20 \listoftodos[Todo]
21
22 \glsaddall{}
23
24 %Abstract
25 \addcontentsline{toc}{chapter}{Abstract}
26 \chapter*{\centering Abstract}
27 \begin{quotation}
28 \centering\noindent
29 \input{abstract}
30 \end{quotation}
31
32 \addcontentsline{toc}{chapter}{Acknowledgements}
33 \chapter*{\centering Acknowledgements}
34 \begin{quotation}
35 \centering\it\noindent
36 \input{acknowledgements}
37 \end{quotation}
38
39 %Table of contents
40 \tableofcontents
41
42 \addcontentsline{toc}{chapter}{Glossaries \& Acronyms}
43 \printglossaries%
44
45 \mainmatter{}
46 \glsresetall{}
47 \chapter{Introduction}\label{chp:introduction}
48 \input{introduction}
49
50 \chapter{\acrlong{TOP}}\label{chp:top}
51 \input{methods.top}
52
53 \chapter{\acrlongpl{EDSL}}\label{chp:dsl}
54 \input{methods.dsl}
55
56 \chapter{mTask}\label{chp:mtask}
57 \input{methods.mtask}
58
59 \chapter{Architecture}\label{chp:arch}
60 \input{results.arch}
61
62 \chapter{mTask continued}\label{chp:mtaskcont}
63 \input{results.mtask}
64
65 \chapter{Conclusion \& Discussion}\label{chp:conclusion}
66 \input{conclusion}
67
68 \appendix\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 \cleardoublepage{}
77 \phantomsection{}
78 \addcontentsline{toc}{chapter}{Bibliography}
79 \bibliographystyle{ieeetr}
80 \bibliography{thesis}
81
82 \cleardoublepage{}
83 \phantomsection{}
84 \addcontentsline{toc}{chapter}{Lists of \ldots}
85 \begingroup
86 \let\clearpage\relax
87 \listoffigures%
88 \listoftables%
89 \lstlistoflistings%
90 \listofalgorithms%
91 \endgroup
92
93 \end{document}