includegraphics 之后的脚注标记位置

includegraphics 之后的脚注标记位置

我知道有很多人问过关于footnotes in captions 和其他方面的问题。我目前正在做一个beamer演示,其中这种机制并不总是必要的,相反,\footnotes可能(我坚持认为是可能)在那里更有意义。

我尝试在通话\footnote后添加一个\includegraphics,但脚注编号放在图片底部,感觉有点奇怪。我更喜欢将标记放在右上角附近。

这可能很容易解决,但是当搜索互联网时,我总是回到\footnote相关\caption问题。

以下是一个例子

\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
    \includegraphics{example-image-a}\footnote{A footnote for an image without figure}
\end{frame}
\end{document}

在此处输入图片描述

答案1

\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
    \raisebox{-\dimexpr\height-\baselineskip}{\includegraphics{example-image-a}}\footnote{A footnote for an image without figure}
\end{frame}
\end{document}

在此处输入图片描述

相关内容