Ja, es fehlte in der engine-Datei je ein Eintrag, der die weiteren Verzeichnisse erstellt:
makeindex -s "$bfname".ist -t "$bfname".slg1 -o "$bfname".syi1 "$bfname".syg1 makeindex -s "$bfname".ist -t "$bfname".slg2 -o "$bfname".syi2 "$bfname".syg2
\RequirePackage[patch]{kvoptions} \documentclass[geometry={top=4cm,bottom=3cm,right=3cm,left=3cm}]{DissOnlineLatex} \usepackage{graphicx} \usepackage{tabularx} \usepackage{booktabs} \usepackage[ngerman]{translator} \usepackage[nonumberlist,acronym,toc]{glossaries} \newglossary[slg1]{roman}{syi1}{syg1}{roman} \newglossary[slg2]{greek}{syi2}{syg2}{greek} \makeglossaries \renewcommand{\glspostdescription}{} %-Glossar--------------------------------------------- \include{glossar} \newglossaryentry{glos:BSP}{name=Beispieleintrag, description={Ein Eintrag zum Visualisieren des Glossar}} %-Abkürzungen--------------------------------------------- \include{acronym} \newacronym{acr:Abk}{Abk}{Abk\"urzung} %-Symbole--------------------------------------------- \include{symbols} \newglossaryentry{symb:z}{ name=z, description={H\"ohe \"uber Grund}, symbol=m, sort=symbolz, type=roman } \newglossaryentry{symb:L}{ name=L, description={L\"ange}, symbol=m, sort=symbolL, type=roman } \newglossaryentry{symb:zeta}{ name=$\zeta$, description={Stabilit\"atsparameter}, symbol=-, sort=symbolz, type=greek } %-Dokument-------------------------------------------------------- \begin{document} \pagenumbering{roman} %-Inhaltsverzeichnis---------------------------------------------- \setcounter{page}{1} \tableofcontents %-Hauptteil------------------------------------------------------- \pagenumbering{arabic} \pagestyle{myheadings} %-Kapitel--------------------------------------------------------- \include{chapter01} \include{chapter02} \include{chapter03} \gls{glos:BSP}\\ \gls{acr:Abk}\\ \gls{symb:z}\\ \gls{symb:L}\\ \gls{symb:zeta}\\ %-Glossar-------------------------------------------- \printglossary[style=altlist,title=Glossar] \newpage %-Abkürzungsverzeichnis-------------------------------------------- \deftranslation[to=German]{Acronyms}{Abk\"urzungsverzeichnis} \printglossary[type=\acronymtype,style=long] \newpage %-Symbolverzeichnis-------------------------------------------- \deftranslation[to=German]{roman}{R\"omische Symbole} \printglossary[type=roman,style=long4col,title=R\"omische Symbole] \deftranslation[to=German]{greek}{Griechische Symbole} \printglossary[type=greek,style=long4col,title=Griechische Symbole] \end{document}
Bleibt noch ein kleiner Problem: Die Einträge der Verzeichnisse im Inhaltsverzeichnisse sind englisch, trotz der \deftranslation... Zeilen.
Wie kann ich die ändern?