图形环境中的 \caption 中的 \footnote 被排版两次,如何停止这种情况?

图形环境中的 \caption 中的 \footnote 被排版两次,如何停止这种情况?
\documentclass{beamer}

\begin{document}

    \begin{frame}
        \begin{figure}
            \includegraphics[scale=0.5]{./foo.png}
            \caption{Blah blah\footnote{something}}
        \end{figure}
    \end{frame}

\end{document}

脚注以这种方式出现了两次,但是在执行时:

\begin{figure}
    \includegraphics[scale=0.1]{./foo.png}
    \caption{Blah blah}{\footnote{something}}
\end{figure}

它出现过一次,但在标题之外。

答案1

您没有提供显示该问题的示例,但您可以使用以下方法防止对标题进行两次评估

\usepackage[singlelinecheck=off]{caption}

这意味着它总是设置在 parbox 中,而不是对一行中的短字幕使用不同的布局。

相关内容