Code: Select all
makeindex <filename>.glo -s nomencl.ist -o <filename>.gls
Cheers,
Simon
Code: Select all
makeindex <filename>.glo -s nomencl.ist -o <filename>.gls
Code: Select all
% preamble\useackage{nomencl}\begin{document}\makenomenclature\printnomenclature\nomenclature{I}{Area moment of inertia}\end{document}
Code: Select all
\nomenclature[Z]{KOH}{-- Potassium Hydroxide}
Code: Select all
makeindex main.nlo -s nomencl.ist -o main.nls
"Impossible" may be a bit strong. I used linux for several months before becoming very familiar with the terminal. But with LaTeX especially it really helps to be familiar with it. It's also very powerful in general.bev wrote: It's impossible to use linux without using a terminal a lot. A real lot.
Congrats on moving to a grownup OS, but you have to break some bad MS habits, prolly.
Code: Select all
"/usr/texbin/makeindex" %.idx"/usr/texbin/makeindex" %.nlo -s nomencl.ist -o %.nls
Code: Select all
"/usr/texbin/makeindex" %.idx; "/usr/texbin/makeindex" %.nlo -s nomencl.ist -o %.nls
Code: Select all
"/usr/texbin/makeindex" %.idx |"/usr/texbin/makeindex" %.nlo -s nomencl.ist -o %.nls
Code: Select all
"/usr/texbin/latex" -interaction=nonstopmode %.tex|"/usr/texbin/bibtex" %.aux|"/usr/texbin/makeindex" %.idx|"/usr/texbin/makeindex" %.nlo -s nomencl.ist -o %.nls|"/usr/texbin/latex" -interaction=nonstopmode %.tex|"/usr/texbin/pdflatex" -synctex=1 -interaction=nonstopmode %.tex|"/Applications/Adobe Reader.app" %.pdf