如何使表格中最右邊的兩列寬度相等?

如何使表格中最右邊的兩列寬度相等?

我正在使用 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}

在此輸入影像描述

相關內容