Suppose I have a simple document like the following:
\documentclass{article}
\begin{document}
test
\end{document}
Suppose I need to use LuaLatex for reasons not worth mentioning here. I can use the --quiet flag to decrease compilation time as follows:
latexmk -lualatex --quiet a.tex
Other than using the --quiet flag, what else can I do to improve performance for this simple example?
--recorder– David Carlisle Dec 15 '22 at 17:49lualatexis actually slower, I'm guessing becauselatexmkcan suppress all those log messages with--quiet, whilelualatexdoesn't appear to be able to do that. With regards to--recorder, compiling withlatexmk --recorderandlatexmk --recorder-has no impact on the calculation time. – user32882 Dec 16 '22 at 07:51--recorder-flag (note the minus sign at the end) suppresses all file recording with LatexMK. – user32882 Dec 16 '22 at 10:22$hash_calc_ignore_pattern{'aux'} = '@abspage@last';to tell latexmk to ignore that aux file entry. – Herb Schulz Dec 16 '22 at 19:23