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]