0

I have been trying to make an glossary using gloss package, but anytime I get the warning no driver for entry "gd" or "gloss definition".

Basically i have the next code:

\documentclass[twoside,12pt]{book}

\usepackage{gloss}

\makegloss

\begin{document}

\maketitle

\tableofcontents

\gloss[nocite]{*}

\printgloss{glsbase,glosario.bib}

\addcontentsline{toc}{chapter}{Glosario}

\input{Introduccion}

\nocite{*}

\printbibliography[heading=bibintoc]

\end{document}

I hope somebody can help me, please!

egreg
  • 1,121,712
Eli
  • 55
  • I believe you're mistaking gloss for glossaries. – egreg Jul 20 '14 at 21:20
  • There is indeed a gloss package on CTAN, using bibtex apparently, but I never tried it so far. It is from 2002, so it might be a little aged ;-) –  Jul 20 '14 at 21:33
  • so you think it´s better using glossaries package? – Eli Jul 20 '14 at 22:02
  • @Eli: I have not compared, but since glossaries is continously updated, I would suggest to use that. The author of glossaries is also a user here on TeX.SX, so if there are some problems, just ask ;-) –  Jul 20 '14 at 22:12
  • @Eli: For a quick setup, perhaps this question might help: http://tex.stackexchange.com/questions/192378/list-of-glossaries-not-displaying/192381#192381 –  Jul 20 '14 at 22:16
  • @ChristianHupfer An answer? – egreg Jan 07 '17 at 22:28

1 Answers1

1

I suggest to use glossaries instead of gloss which hasn't been updated since 2002.

The document below shows the basic usage. See glossaries for more information, especially about the makeglossaries utility.

\documentclass[twoside,12pt]{book}

\usepackage{glossaries}

\makeglossaries

\newglossaryentry{glossaries}{%
  name={glossaries},
  description={A modern and highly configurable package to generate glossaries},
}

\newglossaryentry{gloss}{%
  name={gloss},
  description={An old package, rather aged},
}

\author{Mr. Gumby}
\title{How not to be seen}

\begin{document}

\maketitle

\tableofcontents


Rather use \gls{glossaries} and not \gls{gloss} nowadays as of \today. 


\printglossaries


\end{document}