答案1
不幸的是,您的问题没有提供所需表的足够信息,因此以下建议是基于猜测:
\documentclass{article}
\usepackage{tabularx}
\newcommand\mccc[1]{\multicolumn{3}{c|}{#1}}
\begin{document}
\begin{table}
\begin{tabularx}{\linewidth}{|l|*{9}{>{\centering\arraybackslash}X|}}
\hline
& \mccc{Rouge 1} & \mccc{Rouge 2} & \mccc{Rouge 2} \\
\cline{2-10}
& F1 & P & R & F1 & P & R & F1 & P & R \\
\hline
text & & & & & & & & & \\
\hline
& & & & & & & & & \\
\hline
& & & & & & & & & \\
\hline
\end{tabularx}
\end{table}
\end{document}