main.tex
\documentclass[12pt]{report}
\usepackage[intoc]{nomencl}
\renewcommand{\nomname}{List of Abbreviations}
\setlength{\nomlabelwidth}{6cm}
\makenomenclature
\begin{document}
\include{abbrevations}
\printnomenclature
\tableofcontents
\end{document}
abbrevations.tex
\nomenclature{g}{grams(s)}
\nomenclature{abs}{absolute}
\nomenclature{min}{minute(s)}
\nomenclature{\textit{n}}{normal}
\nomenclature{w}{weak}
It is not sorting properly. The 'n' should come after 'min'. The problem occurs because of \textit{}. How could I resolve this issue?
The nomenclature will contain about 100 elements, and 30 of them will be in italics.

