1
vote
1answer
59 views

pdflatexmk compiles \glossaries fine but neglects \glsaddall

I'm using TeXShop and the pdflatexmk script. When I link at least one entry of the glossary with \gls{label} the glossary compiles fine and all works well (working code example). However I want to use ...
0
votes
0answers
114 views

Xindy error with latexmk [closed]

When I compile my documents with glossaries with latexmk, I frequently seem to be getting the following error: Collected error summary (may duplicate other messages): cusdep acn acr grammar: ...
8
votes
1answer
262 views

Can my custom dependency for latexmk be improved?

In my answer to this question on how to make latexmk use makeglossaries for generating glossaries, I propose the following custom dependency: add_cus_dep('glo', 'gls', 0, 'run_makeglossaries'); ...
4
votes
1answer
425 views

Latexmk with makeglossaries and auxdir and outdir?

How can I use glosseries with latexmk if I use outdir and auxdir parameters? I keep getting the .gls not found... Here is my latexmk build script: latexmk -outdir=out -auxdir=out -g -f -bibtex -dvi- ...
1
vote
2answers
695 views

Latexmk: makeglossaries, Biber and pdfLaTeX / Where to put latexmkrc?

I've got myself seriously confused with latexmk. I have been using latexmk on TeX Live 2011 and I have loved it for making my document with a ToC and references with Biber. I am trying to make it work ...
23
votes
4answers
2k views

How to make Latexmk use makeglossaries?

Is there a way to make Latexmk invoke makeglossaries (part of the glossaries package)? Specifically I want to use latexmk to compile a LaTeX document that uses the glossaries package to produce a ...