交个朋友吧

Overleaf使用技巧

插入图片

%插入图片%
\begin{figure}
	\centering %居中%
    \resizebox{0.8\hsize}{!}{\includegraphics[clip=true]{Images/tu2.png}} %控制表格大小%
    \caption{2PC协议} %图片标题%
    \label{tu2}
\end{figure}

%文中引用
\ref{tu2}

插入表格

推荐使用工具:https://www.tablesgenerator.com/

%插入表格%
\begin{table}
    \centering %居中%
    \caption{阈值同态加密方案} %表格标题%
    \label{tab1}
    \resizebox{0.65\linewidth}{!} %控制表格大小%
	{ 
        \begin{tabular}{|c|c|}
            \hline
            \textbf{方案} & \textbf{类型} \\ \hline
            多密钥Paillier方案{\cite{34}} & TPHE(加法同态) \\ \hline
            多密钥ElGamal方案{\cite{35}} & TPHE(加法同态) \\ \hline
            多密钥CKKS方案{\cite{36}} & TFHE \\ \hline
            多密钥BFV方案{\cite{37}} & TFHE \\ \hline
            多密钥BGG18方案{\cite{38}} & TFHE \\ \hline
            多密钥TFHE(基于GSW)方案{\cite{39}} & TFHE \\ \hline
        \end{tabular}
    }
\end{table}

%文中引用
\ref{tab1}
posted @ 2022-10-03 14:41  PamShao  阅读(1047)  评论(0)    收藏  举报