為什麼這些列不像行那樣分開?

為什麼這些列不像行那樣分開?

在下文中,我嘗試讓列標題跨越矩陣的長度。註解掉的% \multicolumn{3}{c}{Mean} & \multicolumn{3}{c}{Max} & \multicolumn{3}{c}{Min}是我想要使用的內容,也就是三列中每一列的平均值、最大值和最小值。

這是行不通的,所以我試圖找出原因,甚至我Fa對 9 列中的每一列所做的以下操作也不起作用。結果是列標題被壓在左側。

我還在第 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

在我看來,這是一個四欄表。但它太大了,所以需要進行一些調整。

\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}

在此輸入影像描述

相關內容