12

I've put .latexmkrc file into my working directory, but it doesn't seem to be doing anything. Is there a way to check that latexmk picks up my configuration file?

1 Answers1

14

A latexmkrc file is just perl code, so you can just put a print statement in it:

# .latexmkrc

print("Hello, world!  I'm a .latexmkrc\n");

# rest of .latexmkrc

For more about useful assignments to make, see the documentation.

Matthew Leingang
  • 44,937
  • 14
  • 131
  • 195