文字放在图上方,但本应位于图下方

文字放在图上方,但本应位于图下方

我写了类似的东西

text
\begin{figure}
 ...
 ...
\end{figure}
\section{} or text (the problem shows up anyway)

但当我编译(使用 overleaf)时,所有应该位于图像下方的文本都放在了上面,我无法写入任何内容。此外,如果我添加另一行,它就可以正常工作,如下所示

text
\begin{figure}
 ...
 ...
\end{figure}
not_useful_text
\section{} (or text, it's the same)

答案1

我相信您需要精确的图像位置,如果是,请尝试:

\usepackage{float}

\begin{document}
...
text
\begin{figure}[H]
 ...
 ...
\end{figure}
not_useful_text
\section{} (or text, it's the same)
...
\end{document}

相关内容