Warum sind diese Spalten nicht wie die Zeilen getrennt?

Warum sind diese Spalten nicht wie die Zeilen getrennt?

Im Folgenden versuche ich, die Spaltenüberschriften über die gesamte Länge der Matrizen zu verteilen. Die auskommentierten Spalten % \multicolumn{3}{c}{Mean} & \multicolumn{3}{c}{Max} & \multicolumn{3}{c}{Min}sind das, was ich verwenden wollte, d. h. für jede der drei Spalten Mittelwert, Max und Min.

Das funktioniert nicht, also versuche ich herauszufinden, warum, und selbst das Folgende, was ich Fafür jede der 9 Spalten mache, funktioniert nicht. Das Ergebnis ist, dass die Spaltenüberschriften auf der linken Seite zusammengequetscht werden.

Ich erhalte in den Zeilen 96 und 99 auch die Fehlermeldung „Falsch platziertes \omit“, bin mir aber nicht sicher, ob das mit diesem Spaltenproblem zusammenhängt.

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

Antwort1

Mir scheint, dass dies eine Tabelle mit vier Spalten ist. Aber sie ist zu groß, sodass eine Art Anpassung erforderlich ist.

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

Bildbeschreibung hier eingeben

verwandte Informationen