General ⇒ elsarticle | Custom Nomenclature Formatting
elsarticle | Custom Nomenclature Formatting
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 (121.33 KiB) Viewed 16676 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
elsarticle | Custom Nomenclature Formatting
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{}}{}
