I have a problem with nomenclature, working in TexMaker. I have a master document with multiple subdocs. So far I tied to solve the problem how it is described here
Code: Select all
\useackage{nomencl} //package
\begin{document}
\makenomenclature //
\printnomenclature // the place where nomenclature is
\nomenclature{I}{Area moment of inertia}
\end{document}
PS: for latex terminal:
1. latex xxx.tex
2. makeindex main.nlo -s nomencl.ist -o main.nls
3.latex xxx.tex //dvi file generated
4. dvipdfm xxx.dvi
If you want to compile it in Texmaker, go to configure, under makeindex,set it to makeindex %.nlo -s nomencl.ist -o %.nls .
then pdflatex, makeindex,pdflatex !