脚注リンクはジャンプしません

脚注リンクはジャンプしません

これは最小限の動作例です (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}

関連情報