dots/latexmk/.latexmkrc

13 lines
424 B
Plaintext
Raw Normal View History

2024-11-14 13:17:25 +00:00
# It is hard to grep logs with line breaks!
$ENV{max_print_line} = $log_wrap = 1000;
$out_dir = '/tmp/tex';
$pdf_mode = 1;
2024-11-14 13:17:25 +00:00
$pdflatex = 'pdflatex --shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
$pdflualatex = 'lualatex --shell-escape -interaction=nonstopmode -synctex=1 %O %S;';
2024-11-14 13:17:25 +00:00
# https://stackoverflow.com/questions/71868294/set-zathura-as-a-default-viewer-while-using-latexmk
$pdf_previewer = 'zathura';