Last active
November 30, 2016 14:36
-
-
Save topecongiro/296346c76effe2e5868f21713a584f62 to your computer and use it in GitHub Desktop.
My configuration file for latexmk.
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
#!/usr/bin/env perl | |
$latex = 'uplatex -synctex=1'; | |
$latex_silent = 'uplatex -synctex=1 -interaction=batchmode'; | |
$bibtex = 'upbibtex'; | |
$biber = 'biber --bblencoding=utf8 -u -U --output_safechars'; | |
$makeindex = 'mendex %O -o %D %S'; | |
$dvipdf = 'dvipdfmx %O -o %D %S'; | |
$max_repeat = 5; | |
$pdf_mode = 3; | |
$pdf_previewer = "xdg-open"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment