- Put \usepackage[〈options〉]{nomencl} in the preamble of your document.
- Put \makenomenclature in the preamble of your document.
- Issue the \nomenclature command (see Section 2.2) for each symbol you want to have included in the nomenclature list. The best place for this command is immediately after you introduce the symbol for the first time.
- Put \printnomenclature at the place you want to have your nomenclature list.
\documentclass[12pt]{article}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\maketitle
\tableofcontents
\printnomenclature
\nomenclature{$N$}{The number of particles}
\end{document}
To compile do followings in Unix prompt:
makeindex 〈filename〉.nlo -s nomencl.ist -o 〈filename〉.nls
No comments:
Post a Comment