以下では、列ヘッダーをマトリックスの長さに広げようとしています。コメントアウトされている部分は、% \multicolumn{3}{c}{Mean} & \multicolumn{3}{c}{Max} & \multicolumn{3}{c}{Min}
私が使用したい部分、つまり、3 つの列それぞれに平均、最大、最小と表示したい部分です。
それは機能しないので、その理由を調べようとしていますが、9 つの列それぞれに対して行う次の操作もFa
機能しません。結果として、列ヘッダーが左側に押しつぶされてしまいます。
96 行目と 99 行目にも「Misplaced \omit」エラーが表示されますが、それがこの列の問題に関連しているかどうかはわかりません。
\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}
答え1
これは 4 列の表のように見えます。しかし、大きすぎるので、何らかの調整が必要です。
\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}