latextemplate/.latexmkrc
2022-08-05 19:53:05 +02:00

8 lines
389 B
Perl

# 4 = lualatex, do not know why this magic number, see CTAN repository with latexmkrc examples
$pdf_mode= 4 ;
@default_files = ('.maindir/tex/main.tex');
$out_dir = '.maindir/out';
# %O: options
# %S: source file (without argument: main.tex)
# --file-line-error: should tell the file together with the line number when giving errors/warnings
$lualatex = 'lualatex --file-line-error %O %S'