X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=thesis.tex;h=7f09af1e956ac0eb8aa2d21174479c9c68ee14d5;hb=35a1897c4e5381ab975188e8e087ea1612e142dd;hp=2123c65fb29940a30771576a4310e1448feec43b;hpb=6ee111e09a76e74ba5d55492df62702a364216fd;p=msc-thesis1617.git diff --git a/thesis.tex b/thesis.tex index 2123c65..7f09af1 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,31 +1,90 @@ %&thesis -\usepackage[xindy={codepage=utf-8},nonumberlist,acronyms]{glossaries} % Acronyms +\usepackage[nonumberlist]{glossaries} % Glossaries and acronyms +\usepackage[algochapter]{algorithm2e} % Pseudocode +\renewcommand\AlCapFnt{\normalfont} \makeglossaries% -\newacronym{sds}{SDS}{Shared Data Source} + +\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} + +\glsaddall{} + +%Abstract +\addcontentsline{toc}{chapter}{Abstract} +\chapter*{\centering Abstract} +\begin{quotation} + \centering\noindent + \input{abstract} +\end{quotation} -\input{abstract.tex} +\addcontentsline{toc}{chapter}{Acknowledgements} +\chapter*{\centering Acknowledgements} +\begin{quotation} + \centering\it\noindent + \input{acknowledgements} +\end{quotation} +%Table of contents \tableofcontents -\printglossaries% -\chapter{Introduction} -\chapter{Methods} -\chapter{Results} -\chapter{Conclusion \& Discussion} +\mainmatter{} +\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[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask} +\input{mtask} + +\chapter[mTask system]{\gls{mTask} system}\label{chp:system} +\input{system} -\begin{appendices} - \chapter{Communication protocol} - \input{appendix-protocol.tex} -\end{appendices} +\chapter[Extending the mTask EDSL]% + {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont} +\input{mtaskext} +\chapter{System Architecture}\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} + +\phantomsection{} +\addcontentsline{toc}{chapter}{Bibliography} \bibliographystyle{ieeetr} \bibliography{thesis} + +\addcontentsline{toc}{chapter}{Glossary} +\printglossaries% + +\cleardoublepage{} +\phantomsection{} +\addcontentsline{toc}{chapter}{Lists of \ldots} +\begingroup +\let\clearpage\relax +\let\cleardoublepage\relax +\listoffigures% +\listoftables% +\lstlistoflistings% +\listofalgorithms% +\endgroup + \end{document}