如何在图形环境中将 href{} 添加到标题

如何在图形环境中将 href{} 添加到标题

有人能告诉我如何在图形环境中添加吗href{}\caption{}我一直收到 TEX 容量超出错误。我的链接href{}包含下划线字符,转义它们没有帮助。

答案1

你想要这样的东西吗——

标题 href

嗯,可以通过以下方法实现——

\documentclass{article}

\usepackage{graphicx}
\usepackage[colorlinks]{hyperref}

\begin{document}
  
  \begin{figure}[h]
    \centering
    \includegraphics[width=15em]{example-image-golden}
    \caption{More about the \href{https://en.wikipedia.org/wiki/Golden_ratio}
             {golden ration}}
  \end{figure}

\end{document}

欢迎在 TeX.SE 中提问...如果可能的话,提供一个最小工作示例(平均能量损失)来展示您尝试过的内容。这将帮助贡献者更好地了解您的需求,而不会重复宝贵的工作。

相关内容