我正在使用 制作索引makeidx
。
以下不行吗?这对我来说不起作用。
\index{Brazil!\textit{subentry text}}
同样的,不使用斜体 ( \index{Brazil!subentry text}
) 也可以。
答案1
子条目的排序顺序可能不正确,因为\textit
排序字符串中包含了。@
可以使用 -notation 来指定排序键,而无需标记命令:
\documentclass{article}
\usepackage{makeidx}
\makeindex
\begin{document}
\null
\index{Brazil!aaa}
\index{Brazil!zzz}
\index{Brazil!\textit{wrong entry}}
\index{Brazil!subentry text@\textit{subentry text}}
\printindex
\end{document}
命令:
pdflatex test
makeindex test
pdflatex test