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.
|
|
|
|
% 方法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}
|