当前位置:网站首页>Latex引用图片 发现 显示的图片标号不对

Latex引用图片 发现 显示的图片标号不对

2022-08-11 10:21:00 木key哇啦

在latex的图片代码中,当图片的label写在如下位置时:

\begin{figure}[]
\centering    %居中
{
	\centering          %子图居中
	\includegraphics[width=8cm]{xxx.pdf} 
	\label{oo}  %图片引用标记
}
\caption{ xxxxxxxxxxxxx)} 
\end{figure}  

当在文中引用该图片时,发现显示的图片标号为:(实际为类似Fig. 3)

 label的正确位置应该是:

\begin{figure}[]
\centering    %居中
{
	\centering          %子图居中
	\includegraphics[width=8cm]{xxx.pdf} 
}
\caption{ xxxxxxxxxxxxx)} 
\label{oo}  %图片引用标记
\end{figure}  
原网站

版权声明
本文为[木key哇啦]所创,转载请带上原文链接,感谢
https://blog.csdn.net/a13956621590/article/details/126255686