vote up 0 vote down star

Hello *,

I am currently stuck, having two separate glossaries: main & acronyms. Acronyms glossary prints footnotes on first use in the text, but main glossary does not. Is there any way to make any other glossary than acronyms to print footnote on first use of the term? I don't get how to do it.

Here is the code example compiled with TeXnic Center and MiKTeX 2.7:

\documentclass{article}
\usepackage{index}
\usepackage[toc,style=long3colheaderborder,footnote,acronym]{glossaries} 

\makeindex 
\makeglossaries


\newglossaryentry{appdomain}{name={application domain}, description={app Domain Description...}}
\newglossaryentry{sample}{name={[has been inserted aaa]},description={testing testing 123}}

\newacronym{aca}{aca}{a contrived acronym}

\begin{document}
\section{this is a test section}
This is the test line... a \gls{sample} \gls{appdomain} 
\index{entry} and \gls{aca}
\thispagestyle{empty}\cleardoublepage

\printglossary[type=main,title={Glossary},toctitle={Glossary}]
\thispagestyle{empty}\cleardoublepage
\printglossary[type=\acronymtype,title={List of Abbreviations},toctitle={List of Abbreviations}]

\printindex
\thispagestyle{empty}\cleardoublepage
\end{document}

I want sample and appdomain either contain a footnote with description or a footnote stating: please refer to Glossary

Many thanks,
Ovanes

flag

can you post a snippet that will illustrate your problem? – Mica Oct 27 at 19:31
Are you using the standard \glossary command or a package like tug.ctan.org/cgi-bin/…? – D.Shawley Oct 27 at 19:49
I am using the \glossaries package, which is the further development of \glossary. I will try to make a snippet, but I am not sure if it is really required, since when importing the package as: \usepackage[toc,style=long3colheaderborder,footnote,acronym]{glossaries} declares the acronyms to be in a separate glossary. After acronym appears first time in the text I get a footnote, but if the normal glossary phrase appears I don't see it. Doc states that \acronym is smth. like a forward declaration to the \newglossaryentry. How can I make normal glossary entry appear first time with footnote? – ovanes Oct 27 at 21:21

1 Answer

vote up 1 vote down check

In short, with the glossaries package, you can't get footnotes on the first use for non-acronym glossaries.

However, you can redefine some commands in the preamble (after you \usepackage{glossaries}) to get what you want:

\makeatletter
\renewcommand{\gls@main@displayfirst}[4]{
  #1#4\protect\footnote{#2}
}
\makeatother

But that will be really fragile.

link|flag
Wow! That is exactly, what I was looking for. Why is it fragile? – ovanes Nov 7 at 2:11
Sorry, it's late and I did not get immediately. I now got it what means `fragile'. If I change glossary name or type, it will break. But anyway thanks! – ovanes Nov 7 at 2:28
Exactly! Perhaps this should be filed as a feature request with the maintainer of the package… – Rupert Nash Nov 7 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.