-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.latexmkrc
33 lines (24 loc) · 916 Bytes
/
.latexmkrc
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
26
27
28
29
30
31
32
33
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
sub run_makeglossaries {
if ( $silent ) {
system "makeglossaries -q '$_[0]'";
}
else {
system "makeglossaries '$_[0]'";
};
}
@default_files = ('tcc');
# Use pdflatex
$pdflatex = 'pdflatex -synctex=1 -interaction=nonstopmode --shell-escape %O %S';
# Always create PDFs
$pdf_mode = 1;
# Use Skim.app to preview generated PDFs
#$pdf_previewer = 'open -a Skim.app %S';
# Use continous mode by default
#$preview_continuous_mode = 1;
# output to the directory called output in the current directory
#$out_dir = './output';
$bibtex_use = 2;
# file extensions to remove when cleaning
$clean_ext = 'acn acr alg aux bbl bcf blg brf dvi fdb_latexmk fls glg glo gls idx ilg ind ist lof log lol lot maf mtc mtc1 nav out ps pyg run.xml snm synctex.gz synctex.gz(busy) tex.bak tdo toc xdy %R-blx.bib';