This might be a stupid question since I'm new to the whole LaTex thing.
Anyhow, I'm trying to make a "List of abbreviations" by following the explanation on wikibooks.
What I did:
In the main file:
Code: Select all
...
\usepackage{nomencl}
\let\abbrev\nomenclature
\renewcommand{\nomname}{List of abbreviations}
\setlength{\nomlabelwidth}{.25\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
\setlength{\nomitemsep}{-\parsep}
\makenomenclature
...
\begin{document}
...
\include{Abbreviations}
...
\end{document}
Code: Select all
\printnomenclature

Thx!