For my thesis I would like to create a List of Abbreviations/Nomenclature after my list of figures etc, the nomencl package seems to be ideal for this but I just can't quite get it to work, in my preamble I have used the following code to call the package and to change the name of the page title from 'Nomenclature' to 'List of Abbreviations' (as per my Uni's requirements).
Code: Select all
\usepackage{nomencl}
\renewcommand{\nomname}{List of Abbreviations}
\makenomenclature
Code: Select all
\begin{document}
\maketitle
\include{ackno}
\include{originality}
\include{abst}
\begin{romanpages}
\singlespace
\vspace*{-0.75in}
\tableofcontents
\newpage
\singlespace
\vspace*{-0.75in}
\listoffigures
\newpage
\singlespace
\vspace*{-0.75in}
\listoftables
\newpage
\singlespace
\vspace*{-0.75in}
\listofmyequations
\newpage
\singlespace
\vspace*{-.75in}
\printnomenclature
\end{romanpages}
\include{intro}
\include{methods}
\include{discussion}
\include{conclusions}
\write18{makeindex Thesis.nlo -s nomencl.ist -o Thesis.nls}
\end{document}
Code: Select all
BTV \nomenclature{BTV}{Bluetongue Virus}
I think my problem may be do with makeindex not being run, but I am not sure how to do this, or if this is my problem, any suggestions will be gratefully be appreciated.
Many Thanks in advance
leh00