Document Classesnomencl | List of Symbols does not appear

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
The_gardener
Posts: 2
Joined: Tue May 22, 2012 12:23 pm

nomencl | List of Symbols does not appear

Post by The_gardener »

Hello guys,

I am trying to include a List of symbols in my document. I looked up several descriptions, using the nomencl package (e.g. http://texblog.org/) but it does not work, using the following code:

Code: Select all

\documentclass{article}
\usepackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{List of symbols}
\begin{document}
\printnomenclature
$\alpha$ and $\beta$.
\nomenclature{$\beta$}{la}
\nomenclature{$\alpha$}{le}
I do not get any errors but no list of symbols either :(.

First I compile using "LaTeX", then again using "MakeIndex" and then "PDFLaTeX". Is there something wrong with this? Do I need to install the package separately?

Running MakeIndex I get the following result:
Process started

This is makeindex, version 2.15 [TeX Live 2010] (kpathsea + Thai support). Scanning input file xy.idx...done (0 entries accepted, 0 rejected). Nothing written in xy.ind. Transcript written in xy.ilg.

Process exited normally
I am using TeXmaker on a Mac OS X15.8. I am grateful for any suggestions.


Regards,
David

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

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

nomencl | List of Symbols does not appear

Post by cgnieder »

As the documentation (nomencl) to nomencl states you have to call makeindex this way:

Code: Select all

makeindex <filename>.nlo -s nomencl.ist -o <filename>.nls
replacing <filename> with the name of you file, of course.

Regards
site moderator & package author
The_gardener
Posts: 2
Joined: Tue May 22, 2012 12:23 pm

Re: nomencl | List of Symbols does not appear

Post by The_gardener »

Thanks Clemens,
I am just not sure where to enter the makeindex specifications.

My only idea is Texmaker/Preferences/makeindex, although by default it states: "/usr/texbin/makeindex" %.idx
Post Reply