A seguir, estou tentando fazer com que os cabeçalhos das colunas abranjam o comprimento das matrizes. O comentado % \multicolumn{3}{c}{Mean} & \multicolumn{3}{c}{Max} & \multicolumn{3}{c}{Min}
é o que eu queria usar, ou seja, dizer Média, Máx e Mínimo, para cada uma das três colunas.
Isso não está funcionando, então estou tentando ver por que e até mesmo o seguinte, onde faço Fa
para cada uma das 9 colunas, também não está funcionando. O resultado é que os cabeçalhos das colunas ficam comprimidos no lado esquerdo.
Também estou recebendo erros "Misplaced \omit" nas linhas 96 e 99, mas não tenho certeza se isso está relacionado a esse problema de coluna.
\begin{table}
\centering
\begin{tabular}{c|ccc|ccc|ccc}
Transformation & Fa & Fa & Fa & Fa & Fa & Fa & Fa & Fa \\
% \multicolumn{3}{c}{Mean} & \multicolumn{3}{c}{Max} & \multicolumn{3}{c}{Min} \\
\toprule
\multirow{2}{*}{Ground Truth} &
\multicolumn{3}{c}{\multirow{2}{*}{ $\begin{pmatrix}1.197 & 0.050 & -0.026 \\ 0.178 & 1.109 & -0.23 \\ \end{pmatrix}$
}}
\multicolumn{3}{c}{\multirow{2}{*}{
$\begin{pmatrix}1.061 & -0.324 & -1.066 \\ -0.063 & 1.026 & -1.157 \end{pmatrix}$
}}
\multicolumn{3}{c}{\multirow{2}{*}{
$\begin{pmatrix}1.268 & 0.362 & 0.936 \\ 0.314 & 1.262 & 0.889 \\ \end{pmatrix}$
}}
\end{tabular}
% \caption{(Mean, STD) ... Min ... Max}
% \label{table:transform-matrices}
\end{table}
Responder1
Parece-me que esta é uma tabela de quatro colunas. Mas é muito grande, então é necessário algum tipo de ajuste.
\documentclass{article}
\usepackage{amsmath,booktabs}
\begin{document}
\begin{table}[htp]
\centering\footnotesize
\setlength{\tabcolsep}{0pt}
\addtolength{\arraycolsep}{-3pt}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}c c c c}
\toprule
Transformation & Mean & Max & Min \\
\midrule
Ground Truth &
$\begin{pmatrix}1.197 & 0.050 & -0.026 \\ 0.178 & 1.109 & -0.23 \\ \end{pmatrix}$ &
$\begin{pmatrix}1.061 & -0.324 & -1.066 \\ -0.063 & 1.026 & -1.157 \end{pmatrix}$ &
$\begin{pmatrix}1.268 & 0.362 & 0.936 \\ 0.314 & 1.262 & 0.889 \\ \end{pmatrix}$
\end{tabular*}
\caption{(Mean, STD) ... Min ... Max}
\label{table:transform-matrices}
\end{table}
\end{document}