可能重复:
使用章节编号进行图号编号
我在一个部分里面有一个图形,例如:
\subsection{Something}
\begin{figure}[htbp]
\centering
\includegraphics[height=2in]{pictures/mathematic/vn_vicinity.pdf}
\hspace{1.5in}\parbox{5in}{\caption{Representación gráfica Vecindad de Von Neumann}}
\label{fig:VecindadVonNeumann}
\end{figure}
当我想引用该图时:
This is my all awesome figure \ref{fig:VecindadVonNeumann}
我从章节中获得参考编号,而不是从图形本身。
这是我的部门号码
这是我的图,显示 2.1 作为数字
这是我收到的\ref
这正常吗?我不应该2.1
填写我的参考资料吗?
答案1
只要你把它放入参数\label
中\parbox
,它就可以正常工作:
\documentclass{article}
\begin{document}
\subsection{Something}
\begin{figure}[htbp]
\centering
dummy graphics
\hspace{1.5in}\parbox{5in}{\caption{Representación gráfica Vecindad de Von Neumann}\label{fig:VecindadVonNeumann}}
\end{figure}
This is my all awesome figure \ref{fig:VecindadVonNeumann}
\end{document}
看起来好像\parbox
将 和 计数器 分开了\label
。正如 @egreg 在上面的评论中指出的那样,用这样的\hspace
和\parbox
东西来塑造标题并不是很好的风格。最好采用caption
包或——如果你使用其中之一——KOMAscript 类的内置方法。