我想要 3 个索引部分:一个用于生物物种,第二个用于化学物质,第三个用于其他内容)。
问题
- 我是否应该有一个单独的索引并将两个一起作为附录?
- 是否有可能拥有 3 个索引类别?
无论如何,我希望有一个带有用法的示例文件。
答案1
以下帖子有一个答案,描述了如何使用该multind
包
正如 @egreg 在他的一条评论中提到的那样,还有一个imakeidx
包 - 下面是从文档(第 6 页,第 4 节之前)中获取的 MWE(大部分)。
\documentclass{article}
\usepackage{imakeidx}
\makeindex[title=Concept index]
\makeindex[name=persons,title=Index of names,columns=3]
\begin{document}
Here is a list of things and people
\begin{itemize}
\item \LaTeX \index{latex}
\item Beccari \index[persons]{beccari}
\item Gregorio \index[persons]{gregorio}
\end{itemize}
And this is the end of the story.
\printindex
\indexprologue{\small In this index you’ll find only
famous people’s names}
\printindex[persons]
\end{document}