makeindex 问题

makeindex 问题

我正在尝试创建手动添加的单词的索引memoir。我查阅了文档中的说明,并得出了以下 MWE。它可以编译,但为什么索引没有显示?

\documentclass{memoir}

\makeindex
\indexintoc

\begin{document}

\frontmatter
\tableofcontents*

\mainmatter
\chapter{My chapter}
\noindent This is some text.
\index{text}

\backmatter
\printindex

\end{document}

答案1

要生成索引,您需要:

  1. 运行pdflatex生成.idx文件
  2. 运行MakeIndex生成的.ind文件
  3. 运行pdflatex将合并.ind文件并生成索引页。

有关 TeXnicCenter 的具体问题,请参阅TeXnicCenter 中的 Makeindex

相关内容