我使用词汇表包和 perl.exe 来处理缩写和符号。我希望目录中只有一个章节标题 (Nomenklatur),但描述中有多个词汇表标题 (Abkürzungen、Formelzeichen、Griechische Symbols、Indizes),如下图 (第 1 和第 2 幅) 所示。但是,使用当前代码,目录中有所有词汇表图块 (第 3 幅)。有人能帮我做这个吗?
\documentclass[a4paper, 12pt, headsepline, twoside, openright, parskip,fleqn]{scrreprt}
\usepackage[toc,sort=def,xindy,order=letter,style=long,acronym,nopostdot,nonumberlist,nogroupskip,sanitizesort=true]{glossaries}
\newglossary[ch1]{greek}{ch2}{ch3}{Griechische Symbole}
\newglossary[ah1]{indizes}{ah2}{ah3}{Indizes}
\makeglossaries
\newglossaryentry{mr}{name={$m_\textrm{r}$},description={rotierende Ersatzmasse des
Kurbeltriebes}}
\newacronym{ABHE}{ABHE}{Einspritzbeginn Haupteinspritzung}
\newglossaryentry{alpha}{name={$ \alpha$},description={Wärmeübergangskoeffizient, Steigungswinkel}, type=greek}
\newglossaryentry{Arbeitsspiel}{name={Asp},description={Arbeitsspiel},type=indizes}
\begin{document}
\tableofcontents
\glsaddall
\printglossary[title=Abkürzungen,type=\acronymtype]
\printglossary[title=Formelzeichen]
\printglossary[type=greek]
\printglossary[type=indizes]
\end{document}