如何用乳膠製作這張桌子

如何用乳膠製作這張桌子

誰能告訴我如何用乳膠製作這張桌子?

太感謝了。

桌子

答案1

我建議您使用一個tabularx環境,​​將其目標寬度設為\textwidth,並允許在第 2 列到第 9 列中自動換行。

在此輸入影像描述

\documentclass{article} % or some other suitable document class

\usepackage{fontspec} % optional (requires XeLaTeX or LuaLaTeX)
\setmainfont{Calibri} % optional (use a "condensed" font face)

\usepackage[letterpaper,margin=1in]{geometry} % set page parameters as needed
\usepackage{tabularx} % for 'tabularx' env. and 'X' col. type
\usepackage{ragged2e} % for '\RaggedRight' and '\Centering' macros
\newcolumntype{L}{>{\RaggedRight\hspace{0pt}}X} % left alignment
\newcolumntype{C}{>{\Centering\hspace{0pt}}X}   % centering

\begin{document}

\begin{table}
\setlength\extrarowheight{2pt} % for a less-cramped "look"
\setlength\tabcolsep{2pt} % default: 6pt
\footnotesize

\begin{tabularx}{\textwidth}{|c|*{8}{L|}}
\hline
Reference & \multicolumn{3}{c|}{Design} 
          & \multicolumn{2}{c|}{Implementation}
          & \multicolumn{3}{c|}{Experiment} \\
\hline
& Objective & Approach & Limitations\slash Challenges
& Tools\slash Framework & Security
& Dataset & KPI & Results \\
\hline\hline
VL2 [2020] & Image classification & APSI+ AVLR 
& Imbalanced\slash Asymmetric Feature Dist & FATE, Tencent Cloud 
& SMC Asymmetrical PSI & MNIST & Area under curve (AUC), Loss 
& Validates the feasibility of the APSI + AVLR with 
  as good performance as its symmetrical version \\
\hline
VL2 [2020] & Binary classification & & & & & & & \\
\hline
\end{tabularx}
\end{table}

\end{document}

答案2

我建議使用https://www.tablesgenerator.com。您可以使用「已知的 Excel 指令」來建立這個完全相同的表。在那裡,您可以合併/拆分單元格,然後您可能需要獲取為您生成表格的 LaTeX 程式碼。

記得在需要的時候使用一些包包。

相關內容