-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
61 lines (48 loc) · 1.54 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
% Copyright 2019 Clara Eleonore Pavillet
% Author: Clara Eleonore Pavillet (original author), Leonard Quentin Marcq (modified for Tsinghua), 赵宗义 (参与了修改)
% Description: This is an unofficial Tsinghua University Beamer Template I made from scratch. Feel free to use it, modify it, share it.
% Version: 1.1
\PassOptionsToPackage{quiet}{xeCJK}
\documentclass{beamer}
\usepackage{ctex}
\usepackage{fontspec}
\input{Theme/Packages.tex}
\usetheme{iscastca}
%%%<<<---
\newcommand{\system}{Crystals-Kyber}
\newcommand{\variable}{\mathrm}
\newcommand{\field}{\mathsf}
%%%--->>>
\title{This is the title}
\subtitle{This is the subtitle}
\author{Author}
\institute{中国科学院软件研究所}
\date{\today} %\today
\begin{document}
{\setbeamertemplate{footline}{}
\frame{\titlepage}}
\begin{frame}{{\system}的总体架构}
\textbf{困难问题}
\begin{enumerate}
\item Factoring
\item Discrete log
\end{enumerate}
\textbf{量子算法}
\begin{enumerate}
\item Shor's 算法
\item Grover 算法 (量子搜索算法)
\end{enumerate}
\end{frame}
\begin{frame}{数据平面}
\begin{enumerate}
\item 数据平面包含了两个哈希表, 分别是主表 (Main Table) 和辅表 (Ancillary Table).
\item 主表中每个哈希桶包含两个域: $\field{fieldID}$和$\field{count}$
\item 辅表中每个哈希桶也包含两个域: $\field{digest}$和$\field{count}$
\end{enumerate}
\begin{figure}
\centering
\includegraphics[width=0.6\linewidth]{figures/representation/datastructure}
\end{figure}
\end{frame}
\usebeamertemplate{endpage}
\end{document}