-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.tex
128 lines (92 loc) · 3.57 KB
/
main.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
\documentclass[12pt, a4paper, oneside]{book}
\include{packages}
%% remark theoremstyle
%\newtheoremstyle{break}
%{\topsep}{\topsep}%
%{\itshape}{}%
%{\bfseries}{}%
%{\newline}{}%
%\theoremstyle{break}
%\newtheorem{remark}{Remark}[section]
% problem theoremstyle
%\newtheoremstyle{problemstyle} % <name>
%{10pt} % <space above>
%{10pt} % <space below>
%{\normalfont} % <body font>
%{} % <indent amount}
%{\bfseries\itshape} % <theorem head font>
%{\normalfont\bfseries:} % <punctuation after theorem head>
%{.5em} % <space after theorem head>
%{} % <theorem head spec (can be left empty, meaning `normal')>
%\theoremstyle{problemstyle}
%\newtheorem{problem}{Problem}[section] % Comment out [section] toremove section number dependence
%\newtheorem{definition}{Definition}[section]
%\newtheorem{theorem}{Theorem}[section]
%\newtheorem{proposition}{Proposition}[section]
%\newtheorem{remark}{Remark}[section]
%\newtheorem{lemma}{Lemma}[section]
% create command for variance in math mode
%\newcommand{\Var}[1]{\operatorname{Var}\left[#1\right]}
\newtheorem{mydef}{Definition}[section]
\newtheorem{myexample}{Example}[section]
\newtheorem{myprop}{Proposition}[section]
\renewcommand\textflush{flushright}
\setlength\epigraphwidth{.6\textwidth}
\makeglossaries
\include{Glossary/Glossary}
\begin{document}
%----------------------------------------------------------------------------------------
% COVER PAGE
%----------------------------------------------------------------------------------------
\pagestyle{empty}
\input{Cover/cover}
%----------------------------------------------------------------------------------------
% ABSTRACT
%---------------------------------------------------------------------------------------
%% Set page numbers of the introduction to roman
\frontmatter
\pagestyle{plain}
%\include{Abstract/abstract}
%\cleardoublepage
\vspace*{\fill}
\epigraph{\textit{Sed quis custodiet ipsos Custodes?}\\But who will guard the guards themselves?}{Juvenal, c. 100 A.D.}
\vspace*{\fill}
%----------------------------------------------------------------------------------------
% LIST OF CONTENTS/FIGURES/TABLES PAGES
%----------------------------------------------------------------------------------------
\tableofcontents
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\listofalgorithms
\addcontentsline{toc}{chapter}{List of Algorithms}
\printglossaries
\include{Abstract/abstract}
\include{Acknowledgement/acknowledgement}
%----------------------------------------------------------------------------------------
% THESIS CONTENT - CHAPTERS
%----------------------------------------------------------------------------------------
\mainmatter
\include{Chapters/Introduction}
\include{Chapters/Timestamping}
\include{Chapters/Trustless_Timestamping}
\include{Chapters/Trustless_Timestamping_State_of_the_Art}
\include{Chapters/Elliptic_Curve_Commitments}
\include{Chapters/Practical_Analysis_of_sign-to-contract}
\include{Chapters/Conclusions}
%----------------------------------------------------------------------------------------
% THESIS CONTENT - APPENDICES
%----------------------------------------------------------------------------------------
\appendix
\input{Appendix/AppendixA}
\input{Appendix/AppendixB}
\backmatter
%----------------------------------------------------------------------------------------
% BIBLIOGRAPHY
%----------------------------------------------------------------------------------------
\backmatter
\nocite{*}
\bibliographystyle{acm}
\bibliography{Bibliography/biblio}
\end{document}