I am having trouble removing an extra period from the
altlist glossary style in the
glossaries package. Basically, the
glossaries package places a period at the end of the description. This is problematic if the description contains a reference (which has to go after the period). Here is a MWE:
Code: Select all
\documentclass{report}
\usepackage[nonumberlist,description]{glossaries}
\newglossaryentry{gls:Acoustic}
{
name=acoustic,
description=
{Associated with sound, or more generally with mechanical wave propagation in a
medium.\cite{Morfey2000}},
}
\setglossarystyle{altlist}
\makeglossaries
\begin{document}
\glsaddall
\printglossaries
\bibliographystyle{abbrv}
\bibliography{references}
\end{document}
and the
reference.bib file
Code: Select all
@book{Morfey2000,
author={C. L. Morfey},
title={Dictionary of Acoustics},
year=2000,
address={Harcourt Place, 32 Jamestown Road, London NW1 7BY, UK},
publisher = {Academic Press}
}
After running pdflatex, bibtex, makeglossaries,pdflatex,pdflatex, you get the attached,
MWE.pdf. Notice the double period at the end of the glossary description. I have skimmed the
glossaries documentation where they have an example of redefining the
list glossary style (
http://mirrors.rit.edu/CTAN/macros/late ... s-user.pdf), but to be honest this might as well be written in Chinese (which I don't understand). It seems that it would be trivial to find that dot and delete it, any help would be greatly appreciated.