add glue chapter
[msc-thesis1617.git] / thesis.tex
1 %&thesis
2 \usepackage[nonumberlist]{glossaries} % Glossaries and acronyms
3 \usepackage[algochapter]{algorithm2e} % Pseudocode
4 \renewcommand\AlCapFnt{\normalfont}
5 \makeglossaries%
6
7 \input{glossaries}
8
9 \begin{document}
10 \frontmatter{}
11
12 %Titlepage
13 \input{titlepage}
14
15 \glsaddall{}
16
17 %Abstract
18 \addcontentsline{toc}{chapter}{Abstract}
19 \chapter*{\centering Abstract}
20 \begin{quotation}
21 \centering\noindent
22 \input{abstract}
23 \end{quotation}
24
25 \addcontentsline{toc}{chapter}{Acknowledgements}
26 \chapter*{\centering Acknowledgements}
27 \begin{quotation}
28 \centering\it\noindent
29 \input{acknowledgements}
30 \end{quotation}
31
32 %Table of contents
33 \tableofcontents
34
35 \addcontentsline{toc}{chapter}{Glossaries \& Acronyms}
36 \printglossaries%
37
38 \mainmatter{}
39 \glsresetall{}
40 \chapter{Introduction}\label{chp:introduction}
41 \input{intro}
42
43 \chapter{Task Oriented Programming}\label{chp:top}
44 \input{top}
45
46 \chapter{Embedded Domain Specific Languages}\label{chp:dsl}
47 \input{edsl}
48
49 \chapter[The mTask-EDSL]{The \gls{mTask}-\gls{EDSL}}\label{chp:mtask}
50 \input{mtask}
51
52 \chapter[mTask system]{\gls{mTask} system}\label{chp:system}
53 \input{system}
54
55 \chapter[Extending the mTask EDSL]{Extending the \gls{mTask} {EDSL}}\label{chp:mtaskcont}
56 \input{mtaskext}
57
58 \chapter{System Architecture}\label{chp:arch}
59 \input{arch}
60
61 \chapter{Discussion \& Conclusion}\label{chp:conclusion}
62 \input{conclusion}
63
64 \appendix\label{chp:appendix}
65
66 \chapter{Communication protocol}\label{app:communication-protocol}
67 \input{appendix-protocol}
68
69 \chapter{Device client interface}\label{app:device-interface}
70 \input{appendix-device-interface}
71
72 \cleardoublepage{}
73 \phantomsection{}
74 \addcontentsline{toc}{chapter}{Bibliography}
75 \bibliographystyle{ieeetr}
76 \bibliography{thesis}
77
78 \cleardoublepage{}
79 \phantomsection{}
80 \addcontentsline{toc}{chapter}{Lists of \ldots}
81 \begingroup
82 \let\clearpage\relax
83 \let\cleardoublepage\relax
84 \listoffigures%
85 \listoftables%
86 \lstlistoflistings%
87 \listofalgorithms%
88 \endgroup
89
90 \end{document}