General ⇒ Glossary, description in footnote
Glossary, description in footnote
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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Glossary, description in footnote
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
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/