この表をLaTeXで作成する方法

この表をLaTeXで作成する方法

この表をラテックスで作る方法を教えていただけませんか?

どうもありがとう。

テーブル

答え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 コードを取得できます。

必要に応じていくつかのパッケージを使用することを忘れないでください。

関連情報