我正在尝试生成索引,但以下 MWE 和类似的索引没有在 Texstudio 中提供带有索引的 pdf。
\documentclass{book}
\usepackage[makeindex]{imakeidx}
\makeindex
\begin{document}
This is a sentence indexing the command
\index{Breaking!word}
with the environment\index{abstract}
and the ordinary word `document'\index{Test document}.
\printindex
\end{document}
我该如何纠正这个问题?
答案1
根据要求,我回答了我的问题。使用 TexStudio 获取索引所需的操作是在编译文档之前按下 tools->index。其他 Latex 编辑器将有类似的按钮来运行外部 makeindex 命令。