summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexmk/example_rcfiles/nomenclature_latexmkrc
blob: e16ee40f869d60609870adc1e5c92b5e6b9617ff (plain)
1
2
3
4
5
6
7
8
9
10
# This shows how to use the nomencl package for making a nomenclature
# with latexmk.  
# (See http://www.ctan.org/tex-archive/macros/latex/contrib/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");
}