Hello friends.
I'm preparing a paper for review in one Elsevier journal, and got stuck on nomenclature list. Is there anybody here who knows how to do nomenclature list just like in picture below.
P.S. I use elsarticle document class.
Thanks!
General ⇒ elsarticle | Custom Nomenclature Formatting
elsarticle | Custom Nomenclature Formatting
- Attachments
-
- elsarticle-nomenclature.png (121.33 KiB) Viewed 16516 times
Last edited by localghost on Thu May 31, 2012 7:27 pm, edited 2 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

elsarticle | Custom Nomenclature Formatting
After some googling, it seems that I finally managed to solve the problem.
Here is the solution:
In preamble include:
In body type:
Here, table* environment is used to span nomenclature through two columns (in two-column paper).
Add nomenclature items:
If you have odd number of nomenclature items, you may wanna add this item (as a last one):
Hope this is gonna help in future! 
Here is the solution:
In preamble include:
Code: Select all
\usepackage{framed} % Framing content
\usepackage{multicol} % Multiple columns environment
\usepackage{nomencl} % Nomenclature package
\makenomenclature
\setlength{\nomitemsep}{-\parskip} % Baseline skip between items
\renewcommand*\nompreamble{\begin{multicols}{2}}
\renewcommand*\nompostamble{\end{multicols}}
Code: Select all
\begin{table*}[!t]
\begin{framed}
\printnomenclature
\end{framed}
\end{table*}
Add nomenclature items:
Code: Select all
\nomenclature{$I_b$}{First item}
\nomenclature{$I_d$}{Second item}
\nomenclature{$I_r$}{Third item}
Code: Select all
\nomenclature{\mbox{}}{}
