1

I am trying to get my glossary to print in Visual Studio Code, the same files do print a glossary on Overleaf.com.

MWE on Overleaf.com: https://www.overleaf.com/read/kztypntcdrvy

Visual Studio Code / latexmk stated that the files: main.acr and main.gls were missing. However I do have the files: main.acn and main.glo.

I am using, Latexmk: This is Latexmk, John Collins, 1 January 2015, version: 4.41.

  • 2
    Does latexmk know it needs to run makeglossaries? See https://tex.stackexchange.com/questions/1226/how-to-make-latexmk-use-makeglossaries for some pointers. – Marijn Oct 12 '20 at 15:58
  • @Marijn Thank you for your reply, it works now. I had to run makeglossaries main latexmk -pdf main.tex – Lourens Pool Oct 13 '20 at 09:46

1 Answers1

1

Solution from @Marijn

I had to run makeglossaries main and latexmk -pdf main.tex

  • you might want to update, I think modern versions of latexmk might be able to detect the need for makeglossaries automatically. – daleif Mar 12 '21 at 12:22