I'm currently writing my first report in Latex, I like it a lot. The document contains a lot of acronyms. I'd like to add a footnote with a description on the first page that contains the acronym. I tried glosstexfor this. It works good, there is a nice sorted list with acronyms and the first time a footnote is created with the full acronym. Glosstex contains three values: acronym (css), full_acronym (cascading style sheets) and a description (A technology developed by the W3C to separate style from content).
How can I put the description in the footnote together with full_acronym? Maybe I need to use a different package. I also tried the acronym package, but It's not possible with that either.
Thanks in advance.
General ⇒ Glossary, description in footnote
NEW: TikZ book now 40% off at Amazon.com for a short time.

Glossary, description in footnote
You can use the glossaries package. Something like:
Regards
Nicola Talbot
Code: Select all
\documentclass{report}
\usepackage[acronym,footnote,description]{glossaries}
\makeglossaries
\makeatletter
\defglsdisplayfirst[\acronymtype]{%
\firstacronymfont{#1}#4%
\protect\footnote{%
\glslink[\@gls@link@opts]{\@gls@link@label}{#3}: #2}}%
\makeatother
\newacronym[description={An example}]{xyz}{XYZ}{Sample Acronym}
\begin{document}
\gls{xyz}
\printglossaries
\end{document}
Nicola Talbot
LaTeX Resources: http://www.dickimaw-books.com/latexresources.html
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/