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