I was wondering if there is a way to get a
\mathscr
font in a list of abbreviations. When I compile my script, the character appears in the .nls file, but it doesn't print in the section of my thesisCode: Select all
\documentclass[12pt,a4paper]{scrreprt}
\usepackage{mathsrsfs, amsmath}
\usepackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{Nomenclature \& Abbreviations}
\begin{document}
\renewcommand{\nompreamble}{
\protect\thispagestyle{fancy}}
\twocolumn
\phantomsection {chapter}{Nomenclature \& Abbreviations}
\chaptermark{Nomenclature \& Abbreviations}
\printnomenclature[1.8cm]
\pagebreak
$\mathscr{f}=h \nu$
\nomenclature{\mathscr{f}}{some symbol}
\end{document}