You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
527 B
Plaintext
20 lines
527 B
Plaintext
13 years ago
|
### .latexmkrc file.
|
||
|
### For use with latexmk shell script.
|
||
|
### Instructions for use:
|
||
|
### Put a copy of this file in the directory that contains the current job.
|
||
|
### Comment out the parts that are not applicable for the current job.
|
||
|
|
||
|
|
||
|
## shell escape
|
||
|
$latex = "latex --shell-escape";
|
||
|
$pdflatex = "pdflatex --shell-escape";
|
||
|
|
||
|
|
||
|
## makeglossaries (for the glossaries package)
|
||
|
add_cus_dep('glo', 'gls', 0, 'makeglossaries');
|
||
|
add_cus_dep('acn', 'acr', 0, 'makeglossaries');
|
||
|
sub makeglossaries {
|
||
|
system("makeglossaries $_[0]");
|
||
|
}
|
||
|
|