词汇表需要双向链接

词汇表需要双向链接

这个 MWE 运行良好,但仅限于一个方向。

    \documentclass{article}
    \usepackage[colorlinks]{hyperref}
    \usepackage{glossaries}
    
    \newglossary*{Nouns}{Things}
    \newglossary*{Symbols}{Math Symbols}
    \makeglossaries%
    
    \newglossaryentry{electrolyte}{
      type=Nouns,
      name=electrolyte,
      description={solution able to conduct electric current}
    }
    \newglossaryentry{pi}{
      type=Symbols,
      name={\ensuremath{\pi}},
      description={ratio of circumference of circle to its diameter},
      sort=pi
    }
    
    \begin{document}
      Some text about \gls{electrolyte} and \gls*{pi}.
      \clearpage
      \printglossaries%
    \end{document}

虽然我能够在完整代码中提供双向链接,但包提供的链接掩盖了(至少对我来说)所谓的双重方式。简而言之,我的目标是单击目标然后\gls能够返回。

相关内容