如何获取图形标题脚注的超链接标签,以便将您发送到图形列表中的正确位置?

如何获取图形标题脚注的超链接标签,以便将您发送到图形列表中的正确位置?

我对这个hypperref包裹有一些小问题。

我使用了一些脚注来引用我的数据的来源。

为了做到这一点,我只需使用:

\begin{figure}[ht!]
\begin{minipage}{\textwidth}
\centering
Blabla
\caption{Blobloblo.  D'où vient cette figure?\protect\footnotemark}
\end{figure}
\footnotetext{Elle vient de là , elle vient du blues.}

该解决方案与软件包配合良好hyperref,当您单击脚注标记时,您会被重定向到脚注。

主要问题在于图表列表。当我点击脚注标记时,我会返回到主页,就好像图表列表无法在图表列表中的脚注标记和命令之间建立链接一样\footnotemark

有办法解决这个问题吗?

答案1

最简单的方法:不要在图表列表中放置脚注标记:

\caption[<goes in the list>]{<goes below figure>}

例如:

\caption[Blobloblo. D'où vient cette figure?]{%
  Blobloblo. D'où vient cette figure?\protect\footnotemark}.

相关内容