表格和多列环境之间的文本对齐

表格和多列环境之间的文本对齐

我目前正在尝试使用乳胶表来报告不同类别的数据,并解决了文本对齐问题。我尝试使用两个多列环境以及多列和多列的组合,但没有成功。

\begin{table}
    \caption{demo}
    \label{tbl:demo}
    \begin{tabular}{ ccccc }
            \hline
            \multirow{2}{*}{name} &
            \begin{tabular}{c}
                    Category1 \\
                    column1 \\
            \end{tabular}
            &
            \multicolumn{2}{c}{Category2}\\ %\cline{3-4}
            && column1 &column2  \\
            \hline
            n1 & 1 &  7 & 5 \\
            n2  &- & 6 & 4 \\
            n3 & 2 & 9 & 3 \\
            \hline
    \end{tabular}
\end{table}

表格标题对齐不正确

关于如何修复标题的对齐,有什么指示吗?

肯尼斯

答案1

booktabs这是具有正确对齐的版本。

桌子

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{table}
    \centering
    \caption{demo}
    \label{tbl:demo}
    \begin{tabular}{ ccccc }
            \toprule
             & Category1 & \multicolumn{2}{c}{Category 2}\\\cmidrule(lr){2-2}\cmidrule(lr){3-4}
            name & column1 & column1 &column2 \\
            \midrule
            n1 & 1 &  7 & 5 \\
            n2  &- & 6 & 4 \\
            n3 & 2 & 9 & 3 \\
            \bottomrule
    \end{tabular}
\end{table}
\end{document}

相关内容