如何将图形环境定位在脚注上方?

如何将图形环境定位在脚注上方?

这是一个简单的问题:我想把图片放在页面底部,但放在脚注上方。我正在使用回忆录,但文档类{文章}结果是一样的。

例子:

\documentclass[article]{memoir}

\begin{document}
Some text\footnote{The footnote}

\begin{figure}[b]
\vspace{2cm}
\caption{Bild 2}
\end{figure}

\end{document}

我不想对文档中的每个图形都进行反复试验,用“破解”位置选项[H]

答案1

您可以使用\usepackage[bottom]{footmisc}或(仅限于回忆录)命令\feetbelowfloat

\documentclass[article]{memoir}
\feetbelowfloat
\begin{document}
Some text\footnote{The footnote}

\begin{figure}[b]
\vspace{2cm}
\caption{Bild 2}
\end{figure}

\end{document}

enter image description here

相关内容