2015-05-04 9:22 GMT+02:00 Aline Gautrein:
> 2. I used
>
> \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}
>
>
> to get a two column nomenclature with the columns beginning below the
> chapter title. Unfortunately "Nomenclature" is now not been recognized as
> chapter title by the fancyhdr anymore.
>
>
> Does anyone know what to do?
>
Try this instead:
\usepackage{multicol}
\def\thenomenclature{%
\begin{multicols}{2}[%
\addchap{\nomname}
\nompreamble]
\list{}{%
\labelwidth\nom@tempdim
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\itemsep\nomitemsep
\let\makelabel\nomlabel}%
}
\def\endthenomenclature{%
\endlist
\end{multicols}
\nompostamble}
Jürgen
>
> Thanks a lot!
>
>