-
Notifications
You must be signed in to change notification settings - Fork 3
/
master.tex
executable file
·93 lines (71 loc) · 2.79 KB
/
master.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
\documentclass[a4paper,twoside,11pt]{memoir}
\input{preamble}
\hypersetup{
pdfauthor = {Kasper Nissen, Martin Jensen},
pdftitle={KubeCloud: A Small-Scale Cloud Computing Environment},
pdfsubject={Master's thesis at Aarhus University Department of Engineering}
}
\begin{document}
%--------------------------------------------------------------------------%
%------------------------- FRONT MATTER -----------------------------------%
%--------------------------------------------------------------------------%
\frontmatter
\includepdf[noautoscale]{forside.pdf}
%\include{frontpage} % Include the frontpage
\include{sections/resume} % Include the resume
\include{sections/acknowledgements}
% Table of contents
\addcontentsline{toc}{chapter}{\contentsname}{}
\tableofcontents*
\clearpage
%--------------------------------------------------------------------------%
%------------------------- MAIN MATTER ------------------------------------%
%--------------------------------------------------------------------------%
\mainmatter
\include{sections/introduction} % Include the Introduction sections
\include{sections/fundamentals_of_learning}
\include{sections/designing_course_structure_and_learning_goals}
\include{sections/fundamentals_of_cloud_computing}
\include{sections/fundamentals_of_cloud_architecture}
\include{sections/fundamentals_of_resilience}
\include{sections/building_a_raspberry_pi_cluster} % Include the Methods sections
\include{sections/experiment2}
\include{sections/experiment1}
%\include{sections/experiment3}
\include{sections/conclusion} % Include the Conclusion sections
%------------------------- BACK MATTER ------------------------------------%
%--------------------------------------------------------------------------%
%\appendixpage
\appendix
% FIX! REMEMBER TO PUT THIS BACK
\include{sections/appendix_learning/appendix_a} % Learning
\include{sections/appendix_kubernetes/kubernetes}
\include{sections/appendix_microservices/microservices}
\include{sections/appendix_physical_design/physical_design}
\include{sections/appendix_application_layer/application_layer}
\include{sections/appendix_resilience/appendix_resilience}
% EXPERIMENT 2
\include{sections/appendix_overall_evaluation/evaluation}
%\include{sections/appendix_visualizer/visualizer}
%\include{sections/appendix_results/appendix_c}
%\include{sections/appendix_resilience/loadtesting}
%\include{sections/notes}
\backmatter
% List of figures
\phantomsection
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures*
\clearpage
% List of tables
\phantomsection
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables*
\clearpage
\include{sections/attachments}
\bibliographystyle{ieeetr}
\bibliography{reference/references}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: