Document ClassesNomenclature output

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
depeche83
Posts: 1
Joined: Wed Jul 28, 2010 7:50 pm

Nomenclature output

Post by depeche83 »

Hello guys,

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Nomenclature output

Post by gmedina »

Hi,

Are you compiling your document as described at the bottom of page 2 of the package documentation?
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply