X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=thesis.tex;h=d1e525a4900e68f45390411652c192baefcbb981;hb=7b82824c3f3af1d6bc2d9824aae2cc2979ca8180;hp=f5737b5b57a1cdf6e63135f45a8a81b922714199;hpb=0dd82c0183888f46ac4eb4f66380356b1aa5eb4d;p=msc-thesis1617.git diff --git a/thesis.tex b/thesis.tex index f5737b5..d1e525a 100644 --- a/thesis.tex +++ b/thesis.tex @@ -1,4 +1,90 @@ %&thesis +\usepackage[nonumberlist]{glossaries} % Glossaries and acronyms +\usepackage[algochapter]{algorithm2e} % Pseudocode +\renewcommand\AlCapFnt{\normalfont} +\makeglossaries% + +\input{glossaries} + \begin{document} -Hello world! +\frontmatter{} + +%Titlepage +\input{titlepage} + +\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 + +\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[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 and 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} + +\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}