Estou usando o editor Overleaf. Fiz a tabela abaixo, mas quero que as duas colunas mais à direita tenham largura igual e estejam centralizadas.
Quando uso p{1cm} em vez de |c, os textos não ficam centralizados.
Aqui está meu código, estou aberto a suas sugestões:
\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}
Responder1
\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}