X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=thesis.tex;h=63d3f92b022f9ac0d4deeed21d27d15eb8272ef9;hb=20ea9da4247313e4ce6e3a385e2975424c62ebfe;hp=eb150e9d7b9217ff89e6c445ebe62ee40df77115;hpb=c701de5fbdb875ad9c2257f6fb54ebc8f7805d77;p=msc-thesis1617.git diff --git a/thesis.tex b/thesis.tex index eb150e9..63d3f92 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,102 +1,99 @@ %&thesis -\usepackage[nonumberlist,acronyms]{glossaries} -\makeglossaries% +\usepackage[nonumberlist]{glossaries} % Glossaries and acronyms +\usepackage[algochapter]{algorithm2e} % Pseudocode + +% Fix the algorithm font +\renewcommand\AlCapFnt{\normalfont} -\newacronym{GADT}{GADT}{Generalized Algebraic Datatype} -\newacronym{ADT}{ADT}{Algebraic Datatype} -\newacronym{SDS}{SDS}{Shared Data Source} -\newacronym{IoT}{IoT}{Internet of Things} -\newacronym{TOP}{TOP}{Task Oriented Programming} -\newacronym{EDSL}{(E)DSL}{(Embedded) Design Specific Language} -\newacronym{RISC}{RISC}{Reduced Instruction Set Computer} -\newacronym{ARM}{ARM}{Acorn \acrshort{RISC} Machine} -\newacronym{LTN}{LTN}{Low Throughput Network} -\newacronym{IDE}{IDE}{Integrated Development Environment} -\newacronym{TCP}{TCP}{Transmission Control Protocol} -\newglossaryentry{Clean}{name=Clean, - description={is a pure lazy functional programming language based on graph - rewriting}} -\newglossaryentry{iTasks}{name=iTasks, - description={is a \acrshort{TOP} implementation written as a \acrshort{EDSL} - in the \gls{Clean} programming language}} -\newglossaryentry{Task}{name=Task, - description={is the basic building block of a \acrshort{TOP} system}} -\newglossaryentry{mTask}{name=mTask, - description={is an abstraction for \glspl{Task} living on \acrshort{IoT} devices}} -\newglossaryentry{C}{name=C, - description={is low-level programming language suitable for embedded devices}} +% Initialize the glossaries +\makeglossaries% +\input{glossaries} \begin{document} \frontmatter{} %Titlepage -\maketitleru[ - pagenr=1, - course={Master Thesis}, - institute={Radboud University Nijmegen}, - authorstext={Author:}, - righttextheader={Supervisors:}, - righttext={prof.~dr.~dr.h.c.~ir.~M.J.~Plasmeijer\\dr.~P.W.M.~Koopman}] -\listoftodos[Todo] - -\glsaddall{} +\input{titlepage} %Abstract \chapter*{\centering Abstract} +\addcontentsline{toc}{chapter}{Abstract} \begin{quotation} \centering\noindent - \input{abstract.tex} + \input{abstract} \end{quotation} +%Acknowledgements \chapter*{\centering Acknowledgements} +\addcontentsline{toc}{chapter}{Acknowledgements} \begin{quotation} \centering\it\noindent - \input{acknowledgements.tex} + \input{acknowledgements} \end{quotation} %Table of contents \tableofcontents \mainmatter{} + +%Reset glossary and thus the acronyms \glsresetall{} + \chapter{Introduction}\label{chp:introduction} -\input{introduction.tex} +\input{intro} -\chapter{Methods}\label{chp:methods} -\input{methods.tex} +\chapter{Task Oriented Programming}\label{chp:top} +\input{top} -\chapter{Results}\label{chp:results} -\chapter{Conclusion \& Discussion}\label{chp:conclusion} +\chapter{Embedded Domain Specific Languages}\label{chp:dsl} +\input{edsl} -\appendix\label{chp:appendix} -\chapter{Planning}\label{app:planning} -\input{appendix-planning.tex} +\chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask} +\input{mtask} -\chapter{Communication protocol}\label{app:communication-protocol} -\input{appendix-protocol.tex} +\chapter[System Overview]{System Overview}\label{chp:system} +\input{system} -\chapter{Device client interface}\label{app:device-interface} -\input{appendix-device-interface.tex} +\chapter[Extending the mTask EDSL]% + {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont} +\input{mtaskext} -\cleardoublepage{} +\chapter{System Considerations \& Implementation}\label{chp:arch} +\input{arch} + +\chapter{Discussion \& Conclusion}\label{chp:conclusion} +\input{conclusion} + +\appendix% +\label{chp:appendix} + +\chapter{Communication Protocol}\label{app:communication-protocol} +\input{appendix-protocol} + +\chapter{Device Client Interface}\label{app:device-interface} +\input{appendix-device-interface} + +% Bibliography \phantomsection{} -\addcontentsline{toc}{chapter}{List of \ldots} -\begingroup -\let\clearpage\relax -\listoffigures -\listoftables -\lstlistoflistings{} -\endgroup +\addcontentsline{toc}{chapter}{Bibliography} +\bibliographystyle{ieeetr} +\bibliography{thesis} -\cleardoublepage{} -\addcontentsline{toc}{chapter}{Glossaries \& Acronyms} +% Glossary +\addcontentsline{toc}{chapter}{Glossary} +\printglossaries% +% Lists of +\cleardoublepage{} +\phantomsection{} +\addcontentsline{toc}{chapter}{Lists of \ldots} \begingroup \let\clearpage\relax \let\cleardoublepage\relax -\printglossaries% +\listoffigures% +\listoftables% +\listofalgorithms% +\lstlistoflistings% \endgroup -\bibliographystyle{ieeetr} -\bibliography{thesis} \end{document}