Dissertate icon indicating copy to clipboard operation
Dissertate copied to clipboard

Glossary

Open NatMota opened this issue 9 years ago • 1 comments

Hi, I'm trying to add a glossary after the list of contents to no avail. What would be the best way to go about this?

Thanks in advance.

NatMota avatar Apr 27 '15 13:04 NatMota

Try using this package: http://texdoc.net/texmf-dist/doc/latex/nomencl/nomencl.pdf

What I did was to create a new chapter called nomenclature.tex, that looks like this:

% A list of symbols used in the dissertation
\printnomenclature

\nomenclature{$s$}{Stability threshold in the generalized Moran process}
\nomenclature{$s$}{The current state in a Markov decision process}
\nomenclature{\textsc{cie}}{Decsription of symbol}
\nomenclature{$K$}{Number of objects that are presented}
\nomenclature{$N$}{Number of quanta of the mnemonic commodity}
\nomenclature{$L$}{Luce choice exponent}
\nomenclature{\emph{L}*\emph{a}*\emph{b}*}{Description of symbol}
\nomenclature{$S$}{State space for a Markov decision process}
\nomenclature{$A$}{Set of possible actions for a Markov decision process}
\nomenclature{$a$}{The action taken in a Markov decision process}

then add these lines to the main .cls file:

\RequirePackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{Abbreviations, symbols and nomenclature}

and then add this line to the main dissertation.tex file:

\input{chapters/nomenclature}

suchow avatar Jun 04 '15 02:06 suchow