I'd like to print a nomenclature in two columns while keeping the title outside (above) the columns, starting from this:
I used multicols as suggested here, but it includes the title in the first column.
Using \renewcommand{\nomname}{} creates a blank line in the first column.
Removing \renewcommand{\nomname}{} prints Nomenclature as the default title (so it looks like the second picture again).
This is my code:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\usepackage{nomencl}
\makenomenclature
\title{Nomenclature}
\date{}
\begin{document}
\maketitle
\mbox{}
\nomenclature{Spa.}{Spanish}
\nomenclature{Lat.}{Latin}
\nomenclature{It.}{Italian}
\nomenclature{Fr.}{French}
\nomenclature{En.}{English}
\nomenclature{Pt.}{Portuguese}
\nomenclature{Rus.}{Russian}
\nomenclature{Ger.}{German}
\begin{multicols}{2}
\printnomenclature
\end{multicols}
\end{document}
And this is my goal:
(I found this possible solution but nothing appears when I compile the suggested code.)




