
It's the first time that i post something on an English forum...
Here is my problem:
I use fancyhdr for my headers and footers. I have long titles for chapters and sections.
So with \pagestyle{fancy}, they mix in the headers.
The solution for that is to use \section[short]{very very long}.
But then, the short title appears in the table of contents... and i want to see the long title here!
I tried
Code: Select all
\let\stdsection=\section
\renewcommand{\section}[2][]{%
\ifthenelse{\equal{#1}{}}
{}
{\sectionmark{#1}}%
\stdsection{#2}%
\ifthenelse{\equal{#1}{}}
{}
{\sectionmark{#1}}%
}
There's also this
Code: Select all
\newcommand{\mychapter}[2][]{%
\ifthenelse{\equal{#1}{}}
{}
{\chaptermark{#1}}%
\chapter{#2}%
\ifthenelse{\equal{#1}{}}
{}
{\chaptermark{#1}}%
}
all this is not very convincing.
Any idea to help me ??