为什么 ref 链接到部分而不是标签?

为什么 ref 链接到部分而不是标签?

我想引用某一节(例如 1.2)中的一张图,使用\ref{fig:xyz}

部分:

\section{XYZ}

数字:

\begin{figure}
    \includegraphics[width=1\linewidth]{xyz.jpg}
    \label{fig:xyz}
    \caption[XYZ]
\end{figure}

当我将 \ref{label:001} 添加到我的文档时,它并不链接到图形,而是链接到第 (1.2) 节。

我能做什么呢?

答案1

您必须添加\label-\caption之后一切才会正常。

Thus, your figure will now be:
\begin{figure}
    \includegraphics[width=1\linewidth]{xyz.jpg}
    \caption[XYZ]
    \label{fig:xyz}
\end{figure}

相关内容