我正在使用 Koma 的 scrbook 类排版一本书。我在 Windows 10 PC 上使用 PDFLaTex、TexStudio 和 TexLive。我对 LaTeX 还不太熟悉,第一次在这个论坛发帖。
为了制作索引,我开始使用“Index”包,效果很好。但后来我需要包含几行中文字符。我使用的包 (CJKutf8) 与“Index”冲突,所以我改用“Makeidx”。
只要这些词包含在索引中,但它们没有出现在文档中,这种方法就有效。我已包含一个 MWE
\documentclass{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{makeidx}
\makeindex
\begin{document}
xxxxxxxxxxxxxxxxxxxxxxxxxxx \index{\textit{apple}}.
yyyyyyyyyyyyyyyyyyyyyy \index{John}’s
zzzzzzzzzzzzzzzzzzzzzzzzzzz \index{Aristotelian@Aristotle} zzzz
\printindex
\end{document}
文档中的输出在图像中。[
你能帮我修复这个问题,让文字不会在正文中消失吗?