我们用LaTeX写文章时,往往会引用tabularx和hyperref两个包,当我们想让脚注编号也成链接以方便阅读时,往往会发现在hyperref包的属性里设置hyperfootnotes=true,脚注编号还是没能生成超链接。有些文章建议注释tabularx包,就能正常生成正文脚注链接, 但那样的话,表格又会乱套了,甚至编译都不能成功。其实这个麻烦很容易解决,只要把tabularx包的引用放到hyperref包之后,正文脚注编号就能正常生成超链接

\usepackage[hyperfootnotes=true]{hyperref}
\usepackage{tabularx} %This package must be placed after package {hyperref}, otherwise footnote marks are NOT treated as hyperlinks.
 
latex 脚注编号也成为超链接

 

相关文章:

  • 2021-08-01
  • 2021-10-27
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-27
  • 2021-09-01
  • 2022-12-23
  • 2022-02-08
  • 2021-06-23
  • 2022-01-17
  • 2022-12-23
相关资源
相似解决方案