makeidx
package 将列出单词和它们出现的页面的参考。是否可以将页码与\hyperref
package 混合使用,以使页码可点击\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}