如何在 LaTeX 中超链接图形和表格?

如何在 LaTeX 中超链接图形和表格?

我可以通过hyperref软件包超链接参考文献。但我无法超链接图表和表格?我应该使用任何特定的软件包进行标记吗?

答案1

我发现这个适用于我的老问题(像你的一样)。它可以适用于所有:\cite\ref(表格、图表、引文)因此,请将其放在你的序言中:

\usepackage{hyperref}
\usepackage{xcolor}
\hypersetup{
  colorlinks   = true, %Colours links instead of ugly boxes
  urlcolor     = red, %Colour for external hyperlinks
  linkcolor    = blue, %Colour of internal links
  citecolor   = blue %Colour of citations
}

相关内容