这是一个最小的工作示例(在 XeLaTeX 中):
\documentclass[12pt]{ctexart}
\title{Title}
\usepackage[scr=boondox]{mathalfa}
\usepackage{xeCJK, amsmath, amsthm, amssymb, hyperref, setspace, geometry, tcolorbox, tikz, circledsteps, framed, extarrows}
\begin{document}
\maketitle
$\mathscr{A}$\footnote{This is a footnote}$\mathscr{B}$
\end{document}
当我点击红色链接框时,它不会跳转到脚注,好像它是一个空链接。我该如何修复它?任何帮助都非常感谢。
答案1
给 hyperref 一个机会并延迟加载。
这里失败了:
\documentclass{article}
\usepackage{hyperref,setspace}
\begin{document}
a\footnote{This is a footnote}
\end{document}
这里的工作方式如下:
\documentclass{article}
\usepackage{setspace,hyperref}
\begin{document}
a\footnote{This is a footnote}
\end{document}