I would like to include a section in my appendix which shows a list of mathematical symbols, operators, etc. with a textual explanation right next to them. Ideally they should be separated by dots (like in the table of contents).
How can I achieve that? Is that what glossary is for?
Here is my current setup:
...
\appendix{}
\chapter{Appendix}
\section{Notation}
THIS IS WHERE THE LIST SHOULD APPEAR
\section{Appendix 2}
Lorem ipsum ...
...
EDIT: Some more code from my setup
\usepackage[section,numberedsection=autolabel,symbols]{glossaries}
...
\glsaddall{}
\printglossary[type=main,style=long,nonumberlist]
And here my glossary entries
\newglossaryentry{pressure}
{
name={\ensuremath{p}},
description={Pressure}
}
\newglossaryentry{acceleration}
{
name={\ensuremath{g}},
description={Acceleration}
}

glossariescan do this almost out of the box – Oct 14 '15 at 09:36glossariesbut in the end I just did it manually and used thedescriptionenvironment to format the list of symbols with their explanations. I didn't want dots though, not sure how easy it would be to get dots withdescription– FionaSmith Oct 14 '15 at 10:29glossaries. Are you aware of any good style option for a list of symbols? – user2426316 Oct 14 '15 at 10:56good? That's no well defined. I personally would not usedotsas requested, so for me that's not good. – Oct 14 '15 at 10:58dotsto fill that spacing) – user2426316 Oct 14 '15 at 11:04\newglossaryentryetc. I won't try an answer until there's some more support. – Oct 14 '15 at 11:15newglossaryentrys. added them above – user2426316 Oct 14 '15 at 11:19\nomenclature{$a$}{Meaning of $a$}. By default, you won't get the format you want, but section 5.5 of its documentation shows something similar. – Mike Renfro Oct 14 '15 at 12:25