
Dies ist ein minimales funktionierendes Beispiel (in 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}
Wenn ich auf das rote Linkfeld klicke, springt es nicht zur Fußnote, als wäre es ein leerer Link. Wie kann ich das beheben? Jede Hilfe ist willkommen.
Antwort1
Geben Sie Hyperref eine Chance und laden Sie es spät.
Das hier schlägt fehl:
\documentclass{article}
\usepackage{hyperref,setspace}
\begin{document}
a\footnote{This is a footnote}
\end{document}
und das hier funktioniert:
\documentclass{article}
\usepackage{setspace,hyperref}
\begin{document}
a\footnote{This is a footnote}
\end{document}