2015-05-02 11:04 GMT+02:00 Aline Gautrein:
> Hey Lyx-fans,
>
> I included a nomenclature within my work. In general, Lyx includes this
> list in a one column environment. I found the command
>
> \begin{multicols}{2}
> Nomenclature
> \end{multicols}
>
> to create the a two column environement. However, the second column on the
> first page starts at the top of the page, instead of under the title
> "Nomenclature".
>
> I found the solution of editing the package "nomencl" and work around with
> ERT. If I do this, do I also have to re-enter all nomenclature entries by
> hand? That would cause a loooot of work. Is there another solution for this
> problem?
>
You have to redefine the \thenomenclature. Put this in Document > Settings
> Preamble:
\usepackage{multicol}
\@ifundefined{chapter}
{\def\wilh@nomsection{section}}
{\def\wilh@nomsection{chapter}}
\def\thenomenclature{%
\begin{multicols}{2}[%
\csname\wilh@nomsection\endcsname*{\nomname}
\if@intoc\addcontentsline{toc}{\wilh@nomsection}{\nomname}\fi
\nompreamble]
\list{}{%
\labelwidth\nom@tempdim
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\itemsep\nomitemsep
\let\makelabel\nomlabel}%
}
\def\endthenomenclature{%
\endlist
\end{multicols}
\nompostamble}
(courtesy of
http://tex.stackexchange.com/questions/78764/two-column-nomenclature)
HTH
Jürgen
>
> Thanks a lot and greetings!
>
>
>