I'm trying to add an acronym in my document
Code: Select all
\nomenclature[zcif]{$CIF$}{Cauchy's Integral Formula}
Code: Select all
...
! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.5 \item [{$CIF$}]
\begingroup Cauchy's Integral Formula\nomeqref {2.0}
?
Code: Select all
\begin{thenomenclature}
\nomgroup{Z}
\item [{$CIF$}]\begingroup Cauchy's Integral Formula\nomeqref {2.0}
\nompageref{6}
\end{thenomenclature}
However it works when using something like this:
Code: Select all
\begin{eqnarray}
CIF: \hspace*{5mm}F_0^j(a) &=& \frac{1}{2\pi \iota} \oint_{\gamma} \frac{F_0^j(z)}{z - a} dz
\end{eqnarray}
\nomenclature[zcif]{$CIF$}{Cauchy's Integral Formula} % first letter Z is for Acronyms
\nomenclature[aF]{$F$}{complex function} % first letter A is for Roman symbols
\nomenclature[gp]{$\pi$}{ $\simeq 3.14\ldots$} % first letter G is for Greek Symbols
\nomenclature[gi]{$\iota$}{unit imaginary number $\sqrt{-1}$} % first letter G is for Greek Symbols
\nomenclature[gg]{$\gamma$}{a simply closed curve on a complex plane} % first letter G is for Greek Symbols
\nomenclature[xi]{$\oint_\gamma$}{integration around a curve $\gamma$} % first letter X is for Other Symbols
\nomenclature[rj]{$j$}{superscript index} % first letter R is for superscripts
\nomenclature[s0]{$0$}{subscript index} % first letter S is for subscripts
BTW, I'm using Cambridge's thesis latex template.
Thanks