add reset for acronyms
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist,acronyms]{glossaries}
3 \makeglossaries%
4
5 \newacronym{GADT}{GADT}{Generalized Algebraic Datatype}
6 \newacronym{ADT}{ADT}{Algebraic Datatype}
7 \newacronym{SDS}{SDS}{Shared Data Source}
8 \newacronym{IoT}{IoT}{Internet of Things}
9 \newacronym{TOP}{TOP}{Task Oriented Programming}
10 \newacronym{EDSL}{(E)DSL}{(Embedded) Design Specific Language}
11 \newacronym{RISC}{RISC}{Reduced Instruction Set Computer}
12 \newacronym{ARM}{ARM}{Acorn \acrshort{RISC} Machine}
13 \newacronym{LTN}{LTN}{Low Throughput Network}
14 \newacronym{IDE}{IDE}{Integrated Development Environment}
15 \newglossaryentry{Clean}{name=Clean,
16 description={is a pure lazy functional programming language based on graph
17 rewriting}}
18 \newglossaryentry{iTasks}{name=iTasks,
19 description={is a \acrshort{TOP} implementation written as a \acrshort{EDSL}
20 in the \gls{Clean} programming language}}
21 \newglossaryentry{Task}{name=Task,
22 description={is the basic building block of a \acrshort{TOP} system}}
23 \newglossaryentry{mTask}{name=mTask,
24 description={is an abstraction for \glspl{Task} living on \acrshort{IoT} devices}}
25 \newglossaryentry{C}{name=C,
26 description={is low-level programming language suitable for embedded devices}}
27
28 \begin{document}
29 \frontmatter{}
30
31 %Titlepage
32 \maketitleru[
33 pagenr=1,
34 course={Master Thesis},
35 institute={Radboud University Nijmegen},
36 authorstext={Author:},
37 righttextheader={Supervisors:},
38 righttext={prof.~dr.~dr.h.c.~ir.~M.J.~Plasmeijer\\dr.~P.W.M.~Koopman}]
39 \listoftodos[Todo]
40
41 %Abstract
42 \chapter*{\centering Abstract}
43 \begin{quotation}
44 \centering\noindent
45 \input{abstract.tex}
46 \end{quotation}
47
48 \chapter*{\centering Acknowledgements}
49 \begin{quotation}
50 \centering\it\noindent
51 \input{acknowledgements.tex}
52 \end{quotation}
53
54 %Table of contents
55 \tableofcontents
56
57 %Glossaries
58 \glsaddall{}
59 \printglossaries%
60
61 \mainmatter{}
62 \glsresetall
63 \chapter{Introduction}\label{chp:introduction}
64 \input{introduction.tex}
65
66 \chapter{Methods}\label{chp:methods}
67 \input{methods.tex}
68
69 \chapter{Results}\label{chp:results}
70 \chapter{Conclusion \& Discussion}\label{chp:conclusion}
71
72 \appendix\label{chp:appendix}
73 \chapter{Planning}\label{app:planning}
74 \input{appendix-planning.tex}
75
76 \chapter{Communication protocol}\label{app:communication-protocol}
77 \input{appendix-protocol.tex}
78
79 \chapter{Device client interface}\label{app:device-interface}
80 \input{appendix-device-interface.tex}
81
82 \lstlistoflistings{}
83 \listoffigures{}
84 \listoftables{}
85
86 \bibliographystyle{ieeetr}
87 \bibliography{thesis}
88 \end{document}