atom-latex-plus
atom-latex-plus copied to clipboard
latexmkOptions in .latexmkrc for makeindex nomencl package
I don't figure out how to produce glossary with latex-plus. The documented solution for LaTeXmk is to create a .latexmkrc file which contains the following entry:
# Custom dependency and function for nomencl package
add_cus_dep( 'nlo', 'nls', 0, 'makenlo2nls' );
sub makenlo2nls {
system( "makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\"" );
}
I read past issues on Advanced Latemk Options flag but I found nothing that can help me. Any idea?