General ⇒ Generating a List of Symbols
Generating a List of Symbols
I want to create a list of symbols used in my thesis. The list has to be pretty much like the list of figures or tables. I looked around and found out that a nomenclature can be used
for this purpose. But I couldn't create a file. I was wondering if anyone could me a minimal example and quickly explain how to create this list. I will be grateful for any kind of help.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Generating a List of Symbols


Code: Select all
\documentclass{article}
\usepackage{nomencl}
\makenomenclature
\begin{document}
\section*{Main equations}
\begin{equation}
a=\frac{N}{A}
\end{equation}%
\nomenclature{$a$}{The number of angels per unit area}%
\nomenclature{$N$}{The number of angels per needle point}%
\nomenclature{$A$}{The area of the needle point}%
The equation $\sigma = m a$%
\nomenclature{$\sigma$}{The total mass of angels per unit area}%
\nomenclature{$m$}{The mass of one angel}
follows easily.
\printnomenclature
\end{document}
<filename>.tex
and compile it once with pdflatex then with
Code: Select all
makeindex <filename>.nlo -s nomencl.ist -o <filename>.nls
Regards
Generating a List of Symbols
Fortunately, the process is very well described on this community: have a look here.
I've also written a post on how to create a nomenclature manually, which is most useful when you've already written (parts of) your thesis and don't want to check everything again. This is a very easy way as it is nothing more than creating a large table: check it out here.
Follow howtoTeX on twitter
Generating a List of Symbols
I tried both the suggestions and all worked fine. Now I have few more questions.
- How to include List of Symbols entry in the ToC?
- How to rename "Nomenclature" to "List of Symbols"?
- There are some symbols that are used in different locations in the document and their meanings are different. How to duplicate the entry?
- How to reduce line spacing on the nomenclature page?
Regards,
Generating a List of Symbols
I figure out all the questions I posted last time.
It was a simple
\renewcommand
only that I didn't know the entry to rename. Spacing reduced and the ToC entry updated.Regards,