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.
25 lines
723 B
Plaintext
25 lines
723 B
Plaintext
### .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]");
|
|
}
|
|
|
|
|
|
## -- Sources regarding glossary commands
|
|
# http://ctan.tug.org/tex-archive/support/latexmk/example_rcfiles/
|
|
# http://tex.stackexchange.com/questions/1226/how-to-make-latexmk-use-makeglossaries
|
|
|