如何防止数字出现在页面顶部?

如何防止数字出现在页面顶部?

为什么当我用 插入图形时\begin{figure},它会被放在论文的开头?
在此处输入图片描述

答案1

您需要指定[H]如下代码

\begin{figure}[H]
    \centering
    \includegraphics[width=0.95\textwidth]{image.png}
    \caption{Caption.}
    \label{fig:image1}
\end{figure}

添加\usepackage{float}

答案2

因此,我修复此问题的方法是使用center而不是figure

\begin{center}
\centering
\includegraphics[width=0.95\textwidth]{image.png}
\caption{Caption.}
\label{fig:image1}
\end{center}

相关内容