Last active
November 12, 2022 06:09
-
-
Save uchida/1759935 to your computer and use it in GitHub Desktop.
latexmkrc sample for LaTeX documents with pdflatex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- cperl -*- | |
# latexmkrc | |
$pdflatex = 'pdflatex -8bit -etex -halt-on-error -synctex=1 %O %S'; | |
$pdf_mode = 1; | |
$bibtex_use = 1; | |
$clean_ext = '%R_flymake.aux %R_flymake.dvi %R_flymake.log %R_flymake.out'; | |
$clean_full_ext = 'bbl synctex.gz'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment