80 char limit and move glossary to the back
[msc-thesis1617.git] / thesis.tex
index a468137..7f09af1 100644 (file)
@@ -1,32 +1,28 @@
 %&thesis
-\usepackage[nonumberlist,acronyms]{glossaries}
+\usepackage[nonumberlist]{glossaries}  % Glossaries and acronyms
+\usepackage[algochapter]{algorithm2e}             % Pseudocode
+\renewcommand\AlCapFnt{\normalfont}
 \makeglossaries%
 
-\input{acronyms}
 \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}
 
 \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
 \mainmatter{}
 \glsresetall{}
 \chapter{Introduction}\label{chp:introduction}
-\input{introduction}
+\input{intro}
 
-\chapter{\acrlong{TOP}}\label{chp:top}
-\input{methods.top}
+\chapter{Task Oriented Programming}\label{chp:top}
+\input{top}
 
-\chapter{\acrlongpl{EDSL}}\label{chp:dsl}
-\input{methods.dsl}
+\chapter{Embedded Domain Specific Languages}\label{chp:dsl}
+\input{edsl}
 
-\chapter{mTask}\label{chp:mtask}
-\input{methods.mtask}
+\chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask}
+\input{mtask}
 
-\chapter{Architecture}\label{chp:arch}
-\input{results.arch}
+\chapter[mTask system]{\gls{mTask} system}\label{chp:system}
+\input{system}
 
-\chapter{mTask continued}\label{chp:mtaskcont}
-\input{results.mtask}
+\chapter[Extending the mTask EDSL]%
+       {Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont}
+\input{mtaskext}
 
-\chapter{Conclusion \& Discussion}\label{chp:conclusion}
+\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}
+\chapter{Communication Protocol}\label{app:communication-protocol}
 \input{appendix-protocol}
 
-\chapter{Device client interface}\label{app:device-interface}
+\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
-\listoffigures
-\listoftables
-\lstlistoflistings{}
-\endgroup
+\addcontentsline{toc}{chapter}{Glossary}
+\printglossaries%
 
 \cleardoublepage{}
 \phantomsection{}
-\addcontentsline{toc}{chapter}{Glossaries \& Acronyms}
+\addcontentsline{toc}{chapter}{Lists of \ldots}
 \begingroup
 \let\clearpage\relax
 \let\cleardoublepage\relax
-\printglossaries%
+\listoffigures%
+\listoftables%
+\lstlistoflistings%
+\listofalgorithms%
 \endgroup
 
 \end{document}