图列表中的 URL

图列表中的 URL

我常用的图片片段如下:

\begin{figure}[h]
    \begin{center}
        \includegraphics[width=0.35\textwidth]{images/image_name}
        \caption[Capture in list of figures]{Capture below image}
    \end{center}
\end{figure}

但是,我还必须在图表列表中提供源 URL,所以像这样的方法就好了,但遗憾的是,它不起作用:

\begin{figure}[h]
    \begin{center}
        \includegraphics[width=0.35\textwidth]{images/image_name}
        \caption[Capture in list of figures (Source: https://a.b.c/xyz.pdf (accessed on 29.1.2018))]{Capture below image}
    \end{center}
\end{figure}

在 LaTeX 中如何实现这一点?

相关内容