使用 hyperref 的多个自定义索引

使用 hyperref 的多个自定义索引

我正在尝试使用 multind 和 hyperref 创建多个索引,例如:

\documentclass[a4paper, headsepline, footsepline, tablecaptionabove, 12pt]{scrartcl}
\usepackage[
    pdftex=true,     
    backref,      
    pagebackref=false,
    hidelinks=fals,   
    bookmarks=true,         
    bookmarksopen=false,     
    bookmarksnumbered=false,    
    pdfpagemode=None]{hyperref}
\usepackage{multind}

\makeindex{Halogenalkane}
\makeindex{Alkane}

\begin{document}
\section{Wohl-Ziegler}
\index{Halogenalkane}{Wohl-Ziegler}
\section{Radikalhalogenierungen}
\index{Halogenalkane}{Radikalhalogenierungen}
\section{Radikalische Defunktionalisierung}
\index{Alkane}{Rad Def}
\section{Index nach Zielverbindungen}
\printindex{Halogenalkane}{Halogenalkane}
\printindex{Alkane}{Alkane}
\end{document}

但是它不会打印 \index{}{} 命令的第二个参数,也不会创建索引(除了其标题)。我猜想这是 hyperref 和 multind 都修改 \index 命令的问题,但我不知道如何以其他方式实现多个索引。

相关内容