Code: Select all
makeindex <filename>.glo -s nomencl.ist -o <filename>.glsCheers,
Simon
Code: Select all
makeindex <filename>.glo -s nomencl.ist -o <filename>.glsLearn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis