我使用以下代码来生成索引条目,
\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook} %
\usepackage{multind}
\makeindex{index}
\makeindex{notations}
\begin{document}
This is my first index entry\index{index}{first index} under index, I am defining one more index \index{notations}{$\mathbb R$=Set of all Real numbers}.
\printindex{index}{Index}
\printindex{notations}{List of Notations}
\end{document}
答案1
该multind
软件包在 CTAN 上可用,但它已经过时了,是一个 LaTeX 2.09 软件包,在我看来,因为它自 1991 年以来就没有更新过(显然)
可以multind
使用 Enrico Gregorio 的 (埃格尔在 TeX.SX 上!) imakeidx
。
\makeindex[name=foo,title={List of foo}]
对每个单独的索引使用和\index[foo]{Your index entry}
和\printindex[foo]
。
与之相比,主要的变化multind
是第一个参数的使用是可选的,并且使用了键值语法\makeindex
。
\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook} %
\usepackage{imakeidx}
\usepackage{amssymb}
\makeindex[name=index,title=Index]
\makeindex[name=notations,title={List of Notations}]
\begin{document}
This is my first index entry\index[index]{first index} under index, I am defining one more index \index[notations]{$\mathbb R$=Set of all Real numbers}.
\printindex[index]%{Index}
\printindex[notations]%{List of Notations}
\end{document}