chris1234567
02-06-2009, 09:46
Ich möchte 4 verschiedene Glossare erstellen. Das funktioniert aber nur insoweit, dass im Symbolverzeichnis das selbe steht wie in der Liste für die Formeln. Hat jemand eine Idee welchen Denkfehler ich da habe?
\documentclass[a4paper,bibtotoc,oneside,fleqn]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[acronym, toc] {glossaries}
%definition für Inhlatsverzeichnis
\newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
%definition Formelverzeichnis
\newglossary[slg]{formulas}{syi}{syg}{Formelverzeichnis}
\newglossaryentry{glos:AW}{name=Answer, description={This is an answer}}
\newglossaryentry{symb:Pi}{name=$\pi$,description= {This is Pi},sort=symbolpi, type=symbolslist}
\newglossaryentry{form:1}{name=Formula, description={xxx}, type=formulas}
\newacronym[description={Blabla}]{CD}{CD}{Compact Disc}
\makeglossaries
\begin{document}
123\\ \gls{glos:AW}\\ \gls{symb:Pi}\\ \gls{CD}\\ \gls{form:1}
\printglossary[type=\acronymtype,title=Abbreviations]
\printglossary[type=symbolslist,title=Symbols]
\printglossary[type=formulas,title=List of Formulas]
\printglossary[style=altlist,title=Glossary]
\end{document}
BG C
\documentclass[a4paper,bibtotoc,oneside,fleqn]{scrbook}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[acronym, toc] {glossaries}
%definition für Inhlatsverzeichnis
\newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
%definition Formelverzeichnis
\newglossary[slg]{formulas}{syi}{syg}{Formelverzeichnis}
\newglossaryentry{glos:AW}{name=Answer, description={This is an answer}}
\newglossaryentry{symb:Pi}{name=$\pi$,description= {This is Pi},sort=symbolpi, type=symbolslist}
\newglossaryentry{form:1}{name=Formula, description={xxx}, type=formulas}
\newacronym[description={Blabla}]{CD}{CD}{Compact Disc}
\makeglossaries
\begin{document}
123\\ \gls{glos:AW}\\ \gls{symb:Pi}\\ \gls{CD}\\ \gls{form:1}
\printglossary[type=\acronymtype,title=Abbreviations]
\printglossary[type=symbolslist,title=Symbols]
\printglossary[type=formulas,title=List of Formulas]
\printglossary[style=altlist,title=Glossary]
\end{document}
BG C