Orden de aparición en la nomenclatura

Orden de aparición en la nomenclatura

De hecho quiero tener una nomenclatura de dos columnas en orden, pero cuando las escribo en orden en el resultado no están en el orden, ya leí el paquete nomencl: ordenar por orden de aparición, y he aplicado lo mismo estructura pero el problema sigue siendo el mismo. incluso cuando uso \nomencalure[order]{symbol}{significado}. Aquí está el código:

\immediate\write18{makeindex \jobname.nlo -s nomencl.ist -o \jobname.nls}
\documentclass[preprint,12pt,3p,numbers,sort,compress]{elsarticle}
\usepackage{multicol}
\usepackage{framed}  
\usepackage{nomencl}
\makenomenclature
\setlength{\nomitemsep}{-\parskip}
\begin{document}

\section{Introduction}
\label{sec1}
 BLABLABLABLABLABALABABLABLABLABLAB\par 
 LABALABABLABLABLABLABLABALABABLABLAB\par
 LABLABLABALABABLABLABLABLABLABALABA

\begin{framed}
\nomenclature[01]{$x_{1}$}{parameter1}
\nomenclature[02]{$x_{2}$}{parameter2}
\nomenclature[03]{$x_{3}$}{parameter3}
\nomenclature[04]{$x_{4}$}{parameter4}
\nomenclature[05]{$x_{5}$}{parameter5}
\nomenclature[06]{$x_{6}$}{parameter6}
\nomenclature[07]{$x_{7}$}{parameter7}
\nomenclature[08]{$x_{8}$}{parameter8}
\nomenclature[09]{$x_{9}$}{parameter9}
\nomenclature[10]{$x_{10}$}{parameter10}
\nomenclature[11]{$\delta$}{parameter11}
\nomenclature[12]{$\theta$}{parameter12}
\nomenclature[13]{$\omega$}{parameter13}
\begin{multicols}{2}
\printnomenclature[1.9cm]
\end{multicols}
\end{framed}
\end{document}

ingrese la descripción de la imagen aquí

Respuesta1

nomenclaturetoma el orden de aparición de las entradas como argumento opcional: \nomenclature[order number]{symbol}{description}.

\documentclass[preprint,12pt,3p,numbers,sort,compress]{elsarticle}
\usepackage{multicol}
\usepackage{framed}  
\usepackage{nomencl}

\makenomenclature
\setlength{\nomitemsep}{-\parskip}

\begin{document}

\section{Introduction}

\begin{framed}
\nomenclature[01]{$x_{1}$}{parameter1}
\nomenclature[02]{$x_{2}$}{parameter2}
\nomenclature[03]{$x_{3}$}{parameter3}
\nomenclature[04]{$x_{4}$}{parameter4}
\nomenclature[05]{$x_{5}$}{parameter5}
\nomenclature[06]{$x_{6}$}{parameter6}
\nomenclature[07]{$x_{7}$}{parameter7}
\nomenclature[08]{$x_{8}$}{parameter8}
\nomenclature[09]{$x_{9}$}{parameter9}
\nomenclature[10]{$x_{10}$}{parameter10}
\nomenclature[11]{$\delta$}{parameter11}
\nomenclature[12]{$\theta$}{parameter12}
\nomenclature[13]{$\omega$}{parameter13}

\begin{multicols}{2}
\printnomenclature[1.9cm]
\end{multicols}

\end{framed}

\end{document}

lo que crea lo siguiente:

ingrese la descripción de la imagen aquí

información relacionada