-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.tex
98 lines (77 loc) · 1.88 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
94
95
96
97
98
\documentclass[nols, nohyper, notoc, nofonts, nobib, openany]{tufte-book}
\input{preamble}
\includeonly{%
glossary,
titlepage,
copyright,
colophon,
abstract,
acknowledgements,
toc,
lists,
chapters/prelude,
chapters/introduction,
chapters/grover,
chapters/shor,
chapters/polarization_photons,
chapters/path_polarization_photons,
chapters/conclusion,
bibliography,
appendices/appendix_A,
appendices/appendix_B,
appendices/appendix_C,
appendices/appendix_D,
}
%%
% Thesis meta data
\title{Quantum Computing on Cloud-Based Processors}
\author[Unathi K. Skosana]{Unathi K. Skosana}
\publisher{Stellenbosch University}
\include{glossary}
\makeglossaries
\begin{document}
% Front matter
\frontmatter
\pagenumbering{roman}
\include{titlepage}
\include{copyright}
\include{abstract}
\include{colophon}
\include{acknowledgements}
\include{toc}
\include{lists}
% do input in toc
\addtocontents{toc}{\protect\setcounter{tocdepth}{3}}
%%
% Start the main matter (normal chapters)
\mainmatter
% Start at chapter zero
\setcounter{chapter}{-1}
% Arabic page numbering
\pagenumbering{arabic}
\pagestyle{mainmatter}
\include{chapters/prelude}
\part{Realizing quantum algorithms on the cloud}
\labelPart{realizing_quantum_algorithms_on_the_cloud}
\include{chapters/introduction}
\include{chapters/grover}
\include{chapters/shor}
\part{Building a three-qubit one-way quantum computer}
\labelPart{building_a_three_qubit_one_way_quantum_computer}
\include{chapters/polarization_photons}
\include{chapters/path_polarization_photons}
\part{Epilogue}
\labelPart{epilogue}
\include{chapters/conclusion}
%%
\appendix
\part{Technical appendix}
\labelPart{appendix}
\include{appendices/appendix_A}
\include{appendices/appendix_B}
\include{appendices/appendix_C}
\include{appendices/appendix_D}
%%
\backmatter
\include{bibliography}
\end{document}