如何避免图片出现在脚注下?

如何避免图片出现在脚注下?

我在写包含大量图片的文档时发现了这个问题。我使用了环境htb选项figure,一些图片出现在脚注下。

这是MWE:

\documentclass{article}
\usepackage{graphicx}
\begin{document}
    test\footnote{test}
    \begin{figure}[b]
        \centering
        \includegraphics[width=0.3\textwidth]{test.jpg}
    \end{figure}
\end{document}

您可以使用任何图片作为test.jpg

结果如下: 在此处输入图片描述

答案1

只需添加\usepackage[bottom]{footmisc}

\documentclass{article}
\usepackage[paperheight=5in,paperwidth=3in]{geometry}
%smaller dimensions for testing purposes
\usepackage[bottom]{footmisc}
\usepackage{graphicx}
\begin{document}
    test\footnote{test}
    \begin{figure}[b]
        \centering
        \includegraphics[width=0.3\textwidth]{8251.png}%or whatever image you like
    \end{figure}
\end{document}

在此处输入图片描述

相关内容