正确参考图吗?

正确参考图吗?

可能重复:
使用章节编号进行图号编号

我在一个部分里面有一个图形,例如:

\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.4

这正常吗?我不应该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 类的内置方法。

相关内容