X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=thesis.tex;h=63d3f92b022f9ac0d4deeed21d27d15eb8272ef9;hb=4bb4ae51e1199aa618d8765b0bc429fba9055140;hp=84d634362cd7c1b972675d207679256a96c54a34;hpb=9c940edab2b3282dc658a629a24573e92964ae77;p=msc-thesis1617.git diff --git a/thesis.tex b/thesis.tex index 84d6343..63d3f92 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,51 +1,99 @@ %&thesis -\usepackage[xindy,nonumberlist,acronyms]{glossaries} % Acronyms +\usepackage[nonumberlist]{glossaries} % Glossaries and acronyms +\usepackage[algochapter]{algorithm2e} % Pseudocode + +% Fix the algorithm font +\renewcommand\AlCapFnt{\normalfont} + +% Initialize the glossaries \makeglossaries% -\newacronym{sds}{SDS}{Shared Data Source} -\newacronym{iot}{IoT}{Internet of Things} -\newacronym{top}{TOP}{Task Oriented Programming} +\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] +\input{titlepage} %Abstract \chapter*{\centering Abstract} +\addcontentsline{toc}{chapter}{Abstract} +\begin{quotation} + \centering\noindent + \input{abstract} +\end{quotation} + +%Acknowledgements +\chapter*{\centering Acknowledgements} +\addcontentsline{toc}{chapter}{Acknowledgements} \begin{quotation} \centering\it\noindent - \input{abstract.tex} + \input{acknowledgements} \end{quotation} %Table of contents \tableofcontents -%Glossaries -\glsaddall{} -\printglossaries% - \mainmatter{} -\chapter{Introduction} -\input{introduction.tex} -\chapter{Methods} -\input{methods.tex} +%Reset glossary and thus the acronyms +\glsresetall{} + +\chapter{Introduction}\label{chp:introduction} +\input{intro} + +\chapter{Task Oriented Programming}\label{chp:top} +\input{top} + +\chapter{Embedded Domain Specific Languages}\label{chp:dsl} +\input{edsl} -\chapter{Results} -\chapter{Conclusion \& Discussion} +\chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask} +\input{mtask} -\appendix -\chapter{Communication protocol} -\input{appendix-protocol.tex} +\chapter[System Overview]{System Overview}\label{chp:system} +\input{system} +\chapter[Extending the mTask EDSL]% + {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont} +\input{mtaskext} + +\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}{Bibliography} \bibliographystyle{ieeetr} \bibliography{thesis} + +% Glossary +\addcontentsline{toc}{chapter}{Glossary} +\printglossaries% + +% Lists of +\cleardoublepage{} +\phantomsection{} +\addcontentsline{toc}{chapter}{Lists of \ldots} +\begingroup +\let\clearpage\relax +\let\cleardoublepage\relax +\listoffigures% +\listoftables% +\listofalgorithms% +\lstlistoflistings% +\endgroup + \end{document}