I am writing an article and I need to use a predefined class. The nomenclature is coded as an environment like this:
\documentclass[12pt]{article}
\newbox\tempbox
\newenvironment{nomenclature}{%
\newcommand\entry[2]{%
\setbox\tempbox\hbox{##1.\quad}
\hangindent\wd\tempbox\noindent{##1}\quad\ignorespaces##2\par}
\section*{NOMENCLATURE}}{\par\addvspace{12pt}}
\begin{document}
\begin{nomenclature}
\entry{$A$}{Duct cross section {[$m^2$]}}
\entry{$A^\pm$}{Acoustic waves}
\entry{$c_p$}{Specific heat capacity at constant pressure {[$J.kg^{-1}.K^{-1}$]}}
\entry{$E_0$}{Energy deposited by the energy deposition model {[$J$]}}
\entry{$He$}{Helmholtz number}
\end{nomenclature}
\end{document}
It is very simple but I would like to have the definitions for the different variables with an indentation.
Thank you very much for your help.
