-
Notifications
You must be signed in to change notification settings - Fork 16
/
main.tex
78 lines (67 loc) · 2.16 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
\documentclass[table]{elegantpaper}
\usepackage{datetime2}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{svg}
\usepackage{listings}
\usepackage{listings-rust}
\usepackage{pgf-pie}
\usepackage{rotating}
\usepackage{tabularray}
\usepackage{tabularx}
\usepackage{makecell}
\usepackage{color}
\usepackage{changepage}
\usepackage{xcolor}
\usepackage{titlesec}
\titleclass{\subsubsubsection}{straight}[\subsection]
\newcounter{subsubsubsection}[subsubsection]
\renewcommand\thesubsubsubsection{\thesubsubsection.\arabic{subsubsubsection}}
\titleformat{\subsubsubsection}
{\normalfont\normalsize\bfseries}{\thesubsubsubsection}{1em}{}
\titlespacing*{\subsubsubsection}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\makeatletter
\renewcommand\subsubsubsection{\@startsection{subsubsubsection}{5}{\z@}%
{3.25ex \@plus1ex \@minus.2ex}%
{-1em}%
{\normalfont\normalsize\bfseries}}
\def\toclevel@subsubsubsection{4}
\def\toclevel@subsubsubsection{5}
\def\toclevel@subsubsubsection{6}
\def\l@subsubsubsection{\@dottedtocline{4}{7em}{4em}}
\def\l@subsubsubsection{\@dottedtocline{5}{7em}{4em}}
\makeatother
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\DTMusemodule{english}{en-GB}
\DTMnewdatestyle{short}{
\renewcommand{\DTMdisplaydate}[4]{
\DTMenglishmonthname{##2} \number##1\relax
}
\renewcommand{\DTMDisplaydate}{\DTMdisplaydate}
}
\newcommand{\shorttoday}{{\DTMsetdatestyle{short}\today}}
\renewcommand{\updatetext}{}
\graphicspath{{./images/}}
\DeclareEmphSequence{\bfseries,\itshape,\upshape}
\lstset{xleftmargin=\parindent,xrightmargin=\parindent,upquote=true}
\title{Ola: A ZKVM-based, High-performance and Privacy-focused Layer2 platform}
\author{Sin7Y, Applied R\&D Team\thanks{\url{https://twitter.com/Sin7Y_Labs}}}
\date{\shorttoday}
\addbibresource[location=local]{reference.bib}
\begin{document}
\maketitle
\input{abstract}
\clearpage
\tableofcontents
\input{introduction/main}
\input{olavm/main}
\input{ola-lang/main}
\input{ola-compiler/main}
\input{zk-zkvm/main}
\input{algorithms/main}
\input{appendix/main}
\input{glossary}
\printbibliography[heading=bibintoc, title=\ebibname]
\end{document}