如何创建具有特定多列的表格?

如何创建具有特定多列的表格?

尝试以这张画得很差的 Paint 图片的格式来格式化表格。在此处输入图片描述

我见过类似的表格格式化示例,但我无论如何都无法让它按我想要的方式工作。我试过使用,\multicolumn但结果就是不正确……如果有人能指出我错过的类似问题,或者就如何做给出建议,我将不胜感激。

我在这里先向您的帮助表示感谢!

答案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}

在此处输入图片描述

相关内容