Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile defaults to latexmk #114

Merged
merged 11 commits into from
May 2, 2015
Prev Previous commit
Next Next commit
add latexmkrc to handle index and glossary right
  • Loading branch information
alick committed May 1, 2015
commit a0df4580eeecd11dc3bac499ea71de6d57fc04c4
6 changes: 6 additions & 0 deletions latexmkrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# vim: set ft=perl:
$makeindex = 'makeindex -s gind.ist %O -o %D %S';
add_cus_dep('glo', 'gls', 0, 'makeglo2gls');
sub makeglo2gls {
system("makeindex -s gglo.ist -o \"$_[0].gls\" \"$_[0].glo\"");
}