Hey Lyx-Gurus,
I am using KOMAscript book and I inserted a footer and header with fancyhdr
(I know one could also use scrpage).
After some playing around, I finally managed to have the footer and headers
as intended, except for two problems.
1. The font of the headers of indices like "Contents", "List of Figures"
etc. is different from the rest of the document also I defined it the same
way. Here is my definition of header and footer:
\pagestyle{fancy}
% Kopfzeile
\fancyhead[LE]{\leftmark}
\fancyhead[RO]{\rightmark}
\fancyhead[C,RE,LO]{}
%Fußzeile
\fancyfoot[RO,LE]{\thepage}
\fancyfoot[RE,LO,CE,CO]{}
I placed it in front of all the indices.
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?
Thanks a lot!