-
Notifications
You must be signed in to change notification settings - Fork 21
/
main.tex
206 lines (157 loc) · 5.05 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
\documentclass[a4paper,11pt,english,oneside,onecolumn,final,openany]{report}
\usepackage{fancyvrb}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[pdftex]{graphicx}
% Useful packages:
% Advanced mathematical formulas and symbols
% -------------------------------------
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
% Color management package
% -------------------------------------
\usepackage[usenames,dvipsnames]{color}
% Advanced crossreferencing commands
% -------------------------------------
% Default settings:
% \usepackage[]{hyperref}
% Disable link coloring:
% \usepackage[colorlinks=false]{hyperref}
% Enable link coloring with personalized colors, make page number (not text) be link on the Table Of Contents (needs color package)
\usepackage[colorlinks=true, linkcolor=BlueViolet, citecolor=BlueViolet, urlcolor=BlueViolet,linktocpage=true]{hyperref}
% Flexible interface to page dimensions
% -------------------------------------
% Default settings:
% \usepackage[]{geometry}
% Set specific margins:
\usepackage[outer=2cm,inner=2.5cm,top=3cm,bottom=2.5cm]{geometry}
% Control line spacing
% -------------------------------------
\usepackage{setspace}
\AtBeginDocument{\let~=\nobreakspace}
\spacing{1.1}
% Control papersize and margins
% -------------------------------------
\usepackage{anysize}
% Tabular package extensions
% -------------------------------------
% \usepackage{array}
% \usepackage{multirow}
% Modify chapter level headings
% -------------------------------------
\usepackage[Sonny]{fncychap}
\usepackage{fancyhdr}
\fancyhead{}
\fancyfoot{}
\rhead[\small \leftmark]{\small \thepage}
\lhead[\small \thepage]{\small \leftmark}
\setlength{\headheight}{13.2pt}
\ChRuleWidth{1pt}
\ChNameAsIs
\ChNameUpperCase
\ChNameVar{\Large\bf}
\ChNumVar{\Huge}
\ChTitleVar{\LARGE}
% Modify appendix and add subappendices environments
% -------------------------------------
\usepackage{appendix}
% Paragraph identation and skip
% -------------------------------------
\setlength{\parindent}{0pt}
\setlength{\parskip}{1.7ex plus 0.5ex minus 0.8ex}
\usepackage{xspace}
\newcommand\nd{\textsuperscript{nd}\xspace}
\newcommand\rd{\textsuperscript{rd}\xspace}
\newcommand\nth{\textsuperscript{th}\xspace}
% ___________________________________________________________________________________________________________
%
% PDF INFO
% ___________________________________________________________________________________________________________
\hypersetup{
pdftitle = {Monero - Privacy in the blockchain},
pdfauthor = {Kurt M. Alonso}
}
\begin{document}
%\maketitle
% ------ Title page ------------------------
\pagenumbering{roman}
\pagestyle{plain}
\thispagestyle{empty}
\mbox{}
\vspace{1cm}
\begin{center}
\includegraphics[width=3cm]{front/figures/logo_uab.jpg}
\hspace{0.5cm}
\includegraphics[width=2.3cm]{front/figures/logo_uib.jpg}
\hspace{0.5cm}
\includegraphics[width=2.5cm]{front/figures/logo_uoc.jpg}
\hspace{0.5cm}
\includegraphics[width=2.8cm]{front/figures/logo_urv.jpg}
\end{center}
\vfill{}
{\par\centering \textsc{\LARGE Monero \\Privacy in the blockchain}\\v1.0
\par
}
\bigskip
{\par\centering \textsc{\large Kurt M. Alonso ({\tt kurt@oktav.se})\\ }
\par \textsc{\large Jordi Herrera Joancomartí } ({\tt jordi.herrera@uab.cat})\par}
\vfill{}
\begin{center}
\begin{minipage}[t]{0.8\columnwidth}
\end{minipage}
% \medskip
\end{center}
\vfill{}
{\par\centering Universitat Autònoma de Barcelona \par}
% ------ Abstract ------------------------
%\newpage
%\mbox{}
\newpage
\pagestyle{empty}
\begin{center}
\vspace*{3.5cm}
{\LARGE \bfseries Abstract}
\end{center}
\vspace{0.5cm}
\begin{center}
\begin{minipage}{5.5in}
\begin{center} \vrule width 4.5in height 0.4pt \end{center}
\parindent=0pt
\include{front/abstract}
\begin{center} \vrule width 4.5in height 0.4pt \end{center}
\end{minipage}
\end{center}
% ------ Table of contents and figures ---------
\tableofcontents
%\listoffigures
% ___________________________________________________________________________________________________________
%
% CONTENT
% ___________________________________________________________________________________________________________
\newpage
\pagenumbering{arabic}
\pagestyle{fancy}
% -------- Chapters ----------------------------
\include{content/introduction}
\include{content/basicConcepts}
\include{content/ring-signatures}
\include{content/commitments}
\include{content/Transactions}
%\include{content/conclusion}
% ___________________________________________________________________________________________________________
%
% BACKMATTER
% ___________________________________________________________________________________________________________
% -------- Bibliography -----------------------
\addcontentsline{toc}{chapter}{Bibliography}
{\footnotesize
\bibliography{back/references.bib}
\bibliographystyle{plain}
}
% -------- Appendix ---------------------------
\addappheadtotoc
\appendixpage
\include{content/appendix}
% -------- Last page -------------------------
\end{document}