각주 링크가 점프하지 않습니다

각주 링크가 점프하지 않습니다

다음은 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}

관련 정보