summaryrefslogtreecommitdiff
path: root/support/latexmk/example_rcfiles/nomenclature_latexmkrc
blob: 4c6817c9a843f0ba6ce784f40c0b9f128baced83 (plain)
1
2
3
4
5
6
7
8
9
# This shows how to use the nomencl package for making a nomenclature
# with latexmk.  
# (See http://www.ctan.org/pkg/nomencl for information on the nomencl package.)


add_cus_dep("nlo", "nls", 0, "nlo2nls");
sub nlo2nls {
    system("makeindex $_[0].nlo -s nomencl.ist -o $_[0].nls -t $_[0].nlg");
}