I'm doing the write up of my dissertation in latex using Winedt. The problem that I face has to do with the nomenclature. Despite the fact that I define the symbols in the sections and I have defined the userpackage in the preamble like this:
% Nomenclature
\usepackage[compatible]{nomencl}
\makeglossary
\renewcommand\nomgroup[1]{%
\ifthenelse{\equal{#1}{A}}{%
\item[\textbf{Roman Symbols}] }{% A - Roman
\ifthenelse{\equal{#1}{G}}{%
\item[\textbf{Greek Symbols}]}{% G - Greek
\ifthenelse{\equal{#1}{R}}{%
\item[\textbf{Superscripts}]}{% R - Superscripts
\ifthenelse{\equal{#1}{S}}{%
\item[\textbf{Subscripts}]}{{% S - Subscripts
\ifthenelse{\equal{#1}{X}}{%
\item[\textbf{Other Symbols}]}{{% X - Other Symbols
\ifthenelse{\equal{#1}{Z}}{%
\item[\textbf{Acronyms}]}% Z - Acronyms
{{}}}}}}}}}}
In the main file I have :
\printglossary %% Print the nomenclature
\addcontentsline{toc}{chapter}{Nomenclature}
but still don't get an output for nomenclature. I don't get any error messages though. The way I define the symbols in the sections is like this:
\nomenclature{$X_{i}$}{The number of x-directions}
Please any ideas why this happens??

cheers