Fußnoten in Tabellen in revtex4-2 werden umbrochen, wenn mehrere Zeilen verwendet werden

Fußnoten in Tabellen in revtex4-2 werden umbrochen, wenn mehrere Zeilen verwendet werden

MWE:

\documentclass[twocolumn,amsmath,amssymb,aps,prb]{revtex4-2}

\usepackage{multirow}
\usepackage{booktabs}

\begin{document}
\begin{table}[htbp]
    \caption{Using star * in \texttt{\textbackslash multirow}}
    \begin{ruledtabular}
    \begin{tabular}{lcc}
        \multirow{2}{*}{Layer before ligand attachment\footnote{+CH3 means one methyl group is already attached}} & \multicolumn{2}{c}{-CH3}\\
        \cmidrule{2-3}
         & RAE & eRAE \\
        \midrule
        1 Nb +CH3 & 0 & 0
    \end{tabular}
    \end{ruledtabular}
\end{table}


\begin{table}[htbp]
    \caption{Using 3cm in \texttt{\textbackslash multirow}}
    \begin{ruledtabular}
    \begin{tabular}{lcc}
        \multirow{2}{3cm}{Layer before ligand attachment\footnote{+CH3 means one methyl group is already attached}} & \multicolumn{2}{c}{-CH3}\\
        \cmidrule{2-3}
         & RAE & eRAE \\
        \midrule
        1 Nb +CH3 & 0 & 0
    \end{tabular}
    \end{ruledtabular}
\end{table}
\end{document}

Dies macht Bildbeschreibung hier eingeben

Ich möchte, dass der Text „Ebene vor …“ in der Zelle umbrochen wird, während die Fußnote nicht umbrochen wird.

Antwort1

Sie brauchen nicht : stattdessen \multirowein Smashed zu verschachteln .tabular

\documentclass[twocolumn,amsmath,amssymb,aps,prb]{revtex4-2}

\usepackage{booktabs}

\begin{document}

\begin{table}[htbp]

\caption{A caption to the table}

\begin{ruledtabular}
\begin{tabular}{lcc}
\smash{\begin{tabular}[t]{@{}l@{}} Layer before ligand \\ attachment%
  \footnote{+CH3 means one methyl group is already attached} \end{tabular}}
& \multicolumn{2}{c}{-CH3}\\
\cmidrule{2-3}
& RAE & eRAE \\
\midrule
1 Nb +CH3 & 0 & 0
\end{tabular}
\end{ruledtabular}

\end{table}

\end{document}

Bildbeschreibung hier eingeben

Wenn Sie eine Zielbreite angeben möchten, können Sie den \footnotemarkund \footnotetext-Mechanismus verwenden, allerdings mit einer Besonderheit aufgrund der doppelten Verarbeitung, die mit durchgeführt wird ruledtabular(was ich grafisch schrecklich finde, aber das ist eine andere Geschichte).

\documentclass[twocolumn,amsmath,amssymb,aps,prb]{revtex4-2}

\usepackage{booktabs,array}
\newcommand{\rultabfnmark}{\footnotemark\addtocounter{mpfootnote}{-1}}

\begin{document}

\begin{table}[htbp]

\caption{A caption to the table}

\begin{ruledtabular}
\begin{tabular}{lcc}
\smash{\parbox[t]{3cm}{\raggedright
  Layer before ligand attachment\rultabfnmark}}
& \multicolumn{2}{c}{-CH3}\\
\cmidrule{2-3}
& RAE & eRAE \\
\midrule
1 Nb +CH3 & 0 & 0
\end{tabular}
\footnotetext{+CH3 means one methyl group is already attached}
\end{ruledtabular}

\end{table}

\end{document}

Die Ausgabe ist die gleiche wie zuvor (natürlich im jeweiligen Fall).

verwandte Informationen