
這是一個最小的工作範例(在 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}