You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
340 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

% 方法1使用 h! 参数
\begin{figure}[h!]
\centering
\includegraphics{your_image}
\caption{图片标题}
\end{figure}
% 方法2使用 H 参数(需要引入 float 包)
\usepackage{float} % 在导言区添加
\begin{figure}[H]
\centering
\includegraphics{your_image}
\caption{图片标题}
\end{figure}