LaTeX:如何在书的中间添加索引

LaTeX:如何在书的中间添加索引

我需要在书的中间添加一个索引,因为我正在编写一个多卷作品,将一个大型 pdf 分成 5 卷,索引应该出现在第一卷的末尾。

如果我\printidex在需要索引的地方执行此操作,则只会出现到该点为止的索引项。其余项\indexentry仅由 LaTeX 写入标准输出,因此永远不会进入索引。

有一个简单的解决办法吗?

一位 MWE 表示:

\documentclass[12pt]{article}
\usepackage{imakeidx}
\makeindex
\begin{document}
aaa\index{aaa}
\printindex
\clearpage % with this in, the index omits bbb; otherwise it's ok :(
bbb\index{bbb}
\end{document}

相关内容