脚注放在错误的页面上

脚注放在错误的页面上

我有一页只有一个图(由多张图片组成)及其标题。我想在同一页上添加脚注。我使用了 SO 中提到的一些建议,例如这个得出以下 MWE:

\documentclass{article}
\usepackage[demo]{graphicx}

\begin{document}

\begin{figure}
   \centering
   \includegraphics{foo}  ...
   \caption[Caption for LOF]{Real caption\protect\footnotemark}
\end{figure}

\footnotetext{blah blah blah}

\end{document}

问题:脚注位于上一页,没有图片,仅包含文字。

答案1

发布的示例与问题无关,因为脚注与图位于同一页。

我猜你有

\documentclass{article}


\begin{document}

\begin{figure}%[!ht]
   \centering
    \rule{1cm}{15cm}
   \caption[Caption for LOF]{Real caption\protect\footnotemark}
\end{figure}

\footnotetext{blah blah blah}

\end{document}

其中图表在第 2 页,脚注在第 1 页。

如果取消注释[!ht],那么所有内容都会出现在一页上。

相关内容