
Este es un ejemplo de trabajo mínimo (en 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}
Cuando hago clic en el cuadro de enlace rojo, no salta a la nota al pie, como si fuera un enlace vacío. ¿Cómo puedo arreglarlo? Se agradece cualquier ayuda.
Respuesta1
Dale una oportunidad a hyperref y cárgalo tarde.
Esto aquí falla:
\documentclass{article}
\usepackage{hyperref,setspace}
\begin{document}
a\footnote{This is a footnote}
\end{document}
y esto aquí funciona:
\documentclass{article}
\usepackage{setspace,hyperref}
\begin{document}
a\footnote{This is a footnote}
\end{document}