Hi.

I'm using the "nomenclature" latex package [1].

It requires the following command

     makeindex mydoc.nlo -s nomencl.ist -o mydoc.nls

in between latex runs.

Could you give me a hint on how I could use the Vim-Latex suite to
automatize that intermediary call to makeindex, please? I'd like to keep 
doing simply \ll, then.

I've tried searching at the mailing list archive, to no avail.

Thanks,
Felipe.

[1] <http://mirror.ctan.org/macros/latex/contrib/nomencl/nomencl.pdf>
A snippet:
The creation of the nomenclature list is very similar to the creation of
an index [6, App. A]. You need to:
     o  Put \usepackage[hoptionsi]{nomencl} in the preamble of your
document.
     o  Put \makenomenclature in the preamble of your document.
     o  Issue the \nomenclature command (see Section 2.2) for each
symbol you want to have included in the nomenclature list.
     o  Put \printnomenclature at the place you want to have your
nomenclature list.

Now put your file through LATEX. The command \makenomenclature will
instruct LATEX to open the nomenclature file <filename>.nlo
corresponding to your LATEX file <filename>.tex and to write the
information from your \nomenclature commands to this file.

The next step is to invoke MakeIndex. You should instruct MakeIndex to
use <filename>.nlo as your input file, use nomencl.ist as your style
file, and write output to the file <filename>.nls. How to do this
depends on your implementation of MakeIndex. For most UNIX
implementations you should write something like
     makeindex <filename>.nlo -s nomencl.ist -o <filename>.nls

Now you have the file <filename>.nls that contains your nomenclature
list properly ordered. The last step is to invoke LATEX on your master
file <filename>.tex once more. It will input your .nls file and process
it accordingly to the current options. That’s all!


-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

Reply via email to