Here's some more code:
Code: Select all
\documentclass[12pt,a4paper]{report}
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\usepackage{nomencl}
\makenomenclature
\makeindex
\fancyhf{}
\lhead{\textsf{\fancyplain{}{\nouppercase\leftmark}}}
\cfoot{\textsf{\fancyplain{}{\thepage}}}
\begin{document}
\tableofcontents
\listoffigures
\renewcommand{\nomname}{List of Symbols}
\printnomenclature
\nomenclature{$a$}{Blah blah blah blah blah}
\nomenclature{$b$}{Blah blah blah blah blah}
\nomenclature{$c$}{Blah blah blah blah blah}
\nomenclature{$d$}{Blah blah blah blah blah}
\nomenclature{$e$}{Blah blah blah blah blah}
\nomenclature{$f$}{Blah blah blah blah blah}
\nomenclature{$g$}{Blah blah blah blah blah}
\nomenclature{$h$}{Blah blah blah blah blah}
\nomenclature{$i$}{Blah blah blah blah blah}
\nomenclature{$j$}{Blah blah blah blah blah}
\nomenclature{$k$}{Blah blah blah blah blah}
\nomenclature{$l$}{Blah blah blah blah blah}
\nomenclature{$m$}{Blah blah blah blah blah}
\nomenclature{$n$}{Blah blah blah blah blah}
\nomenclature{$o$}{Blah blah blah blah blah}
\nomenclature{$p$}{Blah blah blah blah blah}
\nomenclature{$q$}{Blah blah blah blah blah}
\nomenclature{$r$}{Blah blah blah blah blah}
\nomenclature{$s$}{Blah blah blah blah blah}
\nomenclature{$t$}{Blah blah blah blah blah}
\nomenclature{$u$}{Blah blah blah blah blah}
\nomenclature{$v$}{Blah blah blah blah blah}
\chapter{Banana}
\begin{figure}
\caption{i like cake}
\end{figure}
\end{document}
So for that to work you need a batch file which is a text file with the following:
makeindex.exe filename.nlo -s nomencl.ist -o filename.nls
Replace the filename with the name of the LaTex the code is saved to, save the text file as .bat, run it and compile the LaTex file. You should see that the heading for the second page of the "List of Symbols" says "List of Figures".
I'll give the recommendation a go and get back to you shortly!
Louise