latex如何保证图片和文字的相对位置不变

文章目录

  • latex如何保证图片与文字的相对位置不变?
    • 解决方法:

latex如何保证图片与文字的相对位置不变?

解决方法:

  1. 加入宏包\usepackage{float}

  2. 在figure环境后面加入参数H

\begin{figure}[H]
            \centering
            \includegraphics[width=\textwidth]{图片.png}
            \caption{图片}
\end{figure}

你可能感兴趣的:(latex)