目次内の用語集全体に単一のタイトルを付けるにはどうすればよいですか?

目次内の用語集全体に単一のタイトルを付けるにはどうすればよいですか?

略語と記号には、用語集パッケージと perl.exe を使用しています。 下の図 (1 番目と 2 番目) に示すように、目次には 1 つの章の見出し (Nomenklatur) を、説明には複数の用語集タイトル (Abkürzungen、Formelzeichen、Griechische Symbols、Indizes) を表示したいと考えています。 ただし、現在のコードでは、すべての用語集タイルが目次に表示されています (図 3 番目)。 これを実現する方法を教えていただけませんか?

ToCに望むこと

印刷物セクションに欲しいもの

ToCに今あるもの

\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}

関連情報