如何使表格最右边的两列宽度相等?

如何使表格最右边的两列宽度相等?

我正在使用 Overleaf 编辑器。我制作了下面的表格,但我希望最右边的两列宽度相等且居中。

当我使用 p{1cm} 而不是 |c 时,文本没有居中。

这是我的代码,我愿意接受您的建议:

\begin{center}
\begin{tabular}{|c|c|c|c|}
\hline & & \multicolumn{2}{|c|}{ Predictions (by the test) } \\
\hline & & + & - \\
\hline \multirow{2}{*}{Actual (covid status)} & \centering + & 33 & 1 \\
\cline { 2 - 4 } & - & 3 & 72 \\
\hline
\end{tabular}
\end{center}

答案1

\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{center}
\SetTblrInner{hspan=even}
\begin{tblr}
{
colspec={Q[c,m]Q[c,m]Q[c,m]Q[c,m]},
hlines,vlines,
cell{1}{3}={c=2}{},
cell{3}{1}={r=2}{},
}
                       &   & Predictions (by the test) &    \\
                       &   & +                         & -  \\
Actual (covid status)  & + & 33                        & 1  \\
                       & - & 3                         & 72 \\
\end{tblr}
\end{center}
\end{document}

在此处输入图片描述

相关内容