Is there a way to use rubber with makeglossaries?
I found a solution for the simple case.
You have to add the rubber directive to the latex document, in that case myDoc.tex.
% rubber: onchange myDoc.glo 'makeglossaries myDoc'
But when you want to use links to glossary entries in the acronyms descriptions, like in this example:
\newglossaryentry{test}
{
name={test},
description={big description of the test)},
}
\newacronym[description={\gls{test}}]{t}{t}{test}
\gls{t}
You have to compile it more often (see glossaries manual, p.16):
latex myDoc
makeglossaries myDoc
latex myDoc
makeglossaries myDoc
latex myDoc
I played a little bit with the rubber directives and rules, but can't get it to work.
Has anybody else an idea?
