X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=thesis.tex;h=611367fdda9080edc9e6dbabc3aa4dc28ee74eb2;hb=a182f0a12fdb361d341337ce8240cbcd6ca96ebc;hp=af0bc872792722dc6de6101787de889bc4f5320f;hpb=6c6184edee2e3ae64176ee53d891f244b649ba1b;p=msc-thesis1617.git diff --git a/thesis.tex b/thesis.tex index af0bc87..611367f 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,24 +1,87 @@ %&thesis +\usepackage[nonumberlist]{glossaries} % Glossaries and acronyms +\usepackage[]{algorithm2e} % Pseudocode +\makeglossaries% + +\input{glossaries} + \begin{document} -\maketitleru[ - 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] +\frontmatter{} + +%Titlepage +\input{titlepage} + +\listoftodos +\glsaddall{} + +%Abstract +\addcontentsline{toc}{chapter}{Abstract} +\chapter*{\centering Abstract} +\begin{quotation} + \centering\noindent + \input{abstract} +\end{quotation} + +\addcontentsline{toc}{chapter}{Acknowledgements} +\chapter*{\centering Acknowledgements} +\begin{quotation} + \centering\it\noindent + \input{acknowledgements} +\end{quotation} + +%Table of contents \tableofcontents -\chapter{Introduction} -\chapter{Methods} -\chapter{Results} -\chapter{Conclusion \& Discussion} +\addcontentsline{toc}{chapter}{Glossaries \& Acronyms} +\printglossaries% + +\mainmatter{} +\glsresetall{} +\chapter{Introduction}\label{chp:introduction} +\input{introduction} + +\chapter{Task Oriented Programming}\label{chp:top} +\input{methods.top} -\begin{appendices} - \chapter{Communication protocol} - \input{appendix-protocol.tex} -\end{appendices} +\chapter{Embedded Domain Specific Languages}\label{chp:dsl} +\input{methods.dsl} +\chapter{The mTask EDSL}\label{chp:mtask} +\input{methods.mtask} + +\chapter{Extending the mTask EDSL}\label{chp:mtaskcont} +\input{results.mtask} + +\chapter{System Architecture}\label{chp:arch} +\input{results.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} + +\cleardoublepage{} +\phantomsection{} +\addcontentsline{toc}{chapter}{Bibliography} \bibliographystyle{ieeetr} \bibliography{thesis} + +\cleardoublepage{} +\phantomsection{} +\addcontentsline{toc}{chapter}{Lists of \ldots} +\begingroup +\let\clearpage\relax +\let\cleardoublepage\relax +\listoffigures% +\listoftables% +\lstlistoflistings% +\listofalgorithms% +\endgroup + \end{document}