Hatte auch schon nomentbl ausprobiert, da ich hier drei Spalten im Symbolverzeichnis realisieren kann. Da gibts beim kompilieren eine Fehlermeldung (Lonely \item--perhaps a missing list environement).
Gibts Vorschläge, wie ich zu einem dreispaltigen Symbolverzeichnis kommen kann?
Vielen Dank!!!
\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}
%-Abkürzungen---------------------------------------------
\include{acronym}
%-Symbole---------------------------------------------
\include{symbols}
\newglossaryentry{symb:z}{
name=z,
description={Höhe über Grund},
symbol=m,
sort=symbolz, type=roman
}
\newglossaryentry{symb:L}{
name=L,
description={Länge},
symbol=m,
sort=symbolL, type=roman
}
\newglossaryentry{symb:zeta}{
name=$\zeta$,
description={Stabilitätsparameter},
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{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--------------------------------------------
\printglossary[type=roman,style=long4col,title=R\"omische Symbole]
\printglossary[type=greek,style=long4col,title=Griechische Symbole]
\end{document}

