mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
31 lines
905 B
Perl
31 lines
905 B
Perl
# This config is copied from overleaf so output there will match compiled output here
|
|
|
|
# support for the glossaries package:
|
|
add_cus_dep('glo', 'gls', 0, 'makeglossaries');
|
|
add_cus_dep('acn', 'acr', 0, 'makeglossaries');
|
|
sub makeglossaries {
|
|
system("makeglossaries \"$_[0]\"");
|
|
}
|
|
|
|
# support for the nomencl package:
|
|
add_cus_dep('nlo', 'nls', 0, 'makenlo2nls');
|
|
sub makenlo2nls {
|
|
system("makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\"");
|
|
}
|
|
|
|
# from the documentation for V. 2.03 of asymptote:
|
|
sub asy {return system("asy \"$_[0]\"");}
|
|
add_cus_dep("asy","eps",0,"asy");
|
|
add_cus_dep("asy","pdf",0,"asy");
|
|
add_cus_dep("asy","tex",0,"asy");
|
|
|
|
# metapost rule from http://tex.stackexchange.com/questions/37134
|
|
add_cus_dep('mp', '1', 0, 'mpost');
|
|
sub mpost {
|
|
my $file = $_[0];
|
|
my ($name, $path) = fileparse($file);
|
|
pushd($path);
|
|
my $return = system "mpost $name";
|
|
popd();
|
|
return $return;
|
|
} |