footnotebackref 将标题上的脚注引导到错误的页面

footnotebackref 将标题上的脚注引导到错误的页面

我正在使用 XeLaTeX 并采用与我的问题相关的以下设置:

\documentclass[a5paper, 11pt, openany]{ctexbook}
\usepackage[bottom, hang, stable]{footmisc}
\renewcommand{\thefootnote}{\textsf{\arabic{footnote}}}
\setlength{\footnotemargin}{0.5cm}
\setlength{\skip\footins}{0.25cm}
\usepackage[hidelinks]{hyperref}
\usepackage{footnotebackref}

\begin{document}

\chapter*{Title line 1\footnote{foot note here} \\ line 2}
\addcontentsline{toc}{chapter}{Title appears in toc}
\markboth{leftmark}{}
\label{mark}
\input{"filename.tex"}

\end{document}

正文中的引用似乎很好。但是这个特定的chapter*却不行。在我的实际文档中,单击脚注(例如 3),它会引导我到链接到上一个脚注(例如 2)的正文,但单击正文中的链接也可以正常工作。

相关内容