反向引用词汇表条目链接到错误页面

反向引用词汇表条目链接到错误页面

我使用词汇表条目的反向引用,它们大部分都工作正常。但是,如果我在新页面上分出一个段落,那么反向引用会链接到该段落开始的页面,即使词汇表术语出现在新页面上。

这是我的 MWE:

\documentclass[a4paper,12pt,twoside]{memoir}
\usepackage[backref=page]{hyperref}
\usepackage{blindtext}
\usepackage[nopostdot]{glossaries}
\setglossarystyle{altlisthypergroup}
\glstoctrue
\makenoidxglossaries

\newglossaryentry{hank}{
    name={hank},
    description={A metal or plastic clip that is fixed to the luff of the jib and used to attach the jib to the forestay.}
}

\begin{document}
\mainmatter
\blindtext
\blindtext
\blindtext

The jib is usually stored in the cabin, so it must first be brought on the deck and unfolded. The jib has three corners, each having its role and they must not be mixed up. The front corner is attached to the shackle on the deck; jib halyard is attached to the top corner, while jib sheets are attached to the rear corner of the jib. Jib sheets are lines that are used to control the jib during sailing; there are two of them, one for each side of the boat. Jib sheets run through the jib car and then to the cockpit. Depending on the size of the jib and the type of rig, jib sheets are led either on the inner or the outer side of the shrouds. The jib is usually attached to the forestay by using \glspl{hank} (metal or plastic clips). Hanks are fixed to the jib and all of them should be attached to the forestay before hoisting the jib. The normal sequence of attaching the hanks is from bottom up.

\printnoidxglossaries

\end{document}

即使没有段落分隔符,有时也会出现此问题,例如当新段落在图表后的新页面上开始时。我希望反向引用始终指向出现该术语的页面。

相关内容