Generalelsarticle | Custom Nomenclature Formatting

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mgulin
Posts: 18
Joined: Thu May 31, 2012 7:16 pm

elsarticle | Custom Nomenclature Formatting

Post by mgulin »

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!
Attachments
elsarticle-nomenclature.png
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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

mgulin
Posts: 18
Joined: Thu May 31, 2012 7:16 pm

elsarticle | Custom Nomenclature Formatting

Post by mgulin »

After some googling, it seems that I finally managed to solve the problem.

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}}
In body type:

Code: Select all

\begin{table*}[!t]
  \begin{framed}
    \printnomenclature
  \end{framed}
\end{table*}
Here, table* environment is used to span nomenclature through two columns (in two-column paper).

Add nomenclature items:

Code: Select all

\nomenclature{$I_b$}{First item}
\nomenclature{$I_d$}{Second item}
\nomenclature{$I_r$}{Third item}
If you have odd number of nomenclature items, you may wanna add this item (as a last one):

Code: Select all

\nomenclature{\mbox{}}{}
Hope this is gonna help in future! ;)
Post Reply