-
Notifications
You must be signed in to change notification settings - Fork 0
/
lualatexmkrc
25 lines (20 loc) · 1.11 KB
/
lualatexmkrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# DO NOT EDIT OR COPY THIS FILE. TEXSHOP WILL AUTOMATICALLY UPDATE IT
# special latexmk settings for Herb Schulz
#$pdflatex = "pdflatex --shell-escape --synctex=1 --file-line-error %O %S";
$pdflatex = "lualatex $TSUserCompileOptions --synctex=1 --file-line-error %O %S";
# if a bbl file is present but the generating bib file isn't available don't run bibtex. --- default in latexmk 4.13
#$bibtex_use = 1;
# Custom dependency and function(s) for epstopdf package
# FOR USERS OF epstopf v1.4 and before: should also work with v1.5 and later
# note: you may get extras runs if you use the .eps extension in the \includgraphics command
# deletes an outdated pdf-image, and triggers a pdflatex-run
#add_cus_dep('eps', 'pdf', 0, 'cus_dep_delete_dest');
# FOR USERS OF epstopdf v1.5 and later only:
# load it as \usepackage[update,prepend]{epstopdf}
# detects an outdated pdf-image, and triggers a pdflatex-run
add_cus_dep('eps', 'pdf', 0, 'cus_dep_require_primary_run');
# Custom dependecy to convert tif to png
#add_cus_dep('tif', 'png', 0, 'maketif2png');
# sub maketif2png {
# system("convert '$_[0]'.tif '$_[0]'.png");
# }