可点击索引词的锚索引?

可点击索引词的锚索引?

makeidxpackage 将列出单词和它们出现的页面的参考。是否可以将页码与\hyperrefpackage 混合使用,以使页码可点击\hyperlink{page.x}{indexed term}?单击页码即可转到索引中提供的页面。

答案1

只要你加载hyperref包,这就是默认行为最后的

在此处输入图片描述

\documentclass{article}
\usepackage{lipsum}
\usepackage{imakeidx}% For index generation
\usepackage{hyperref}% Load last (AFTER imakeidx)

\makeindex

\begin{document}
  \lipsum[1]
  \index{foo}
  \lipsum[2]
  \printindex
\end{document}

相关内容