I've got a text-superposition problem in my document.
In the preamble, I simply use
Code: Select all
\setlength{\headheight}{15pt}
\renewcommand{\chaptermark}[1]%
{\markboth{\MakeUppercase{\thechapter.\ #1}}{}}
\renewcommand{\sectionmark}[1]%
{\markright{\MakeUppercase{\thesection.\ #1}}}
\newcommand{\helv}{%
\fontfamily{phv}\fontseries{b}\fontsize{9}{11}\selectfont}
\fancyhf{}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.10pt} %untere Trennlinie
\fancyhead[L]{\helv \leftmark} %Kopfzeile links
\fancyhead[C]{} %zentrierte Kopfzeile
\fancyhead[R]{\helv \rightmark}
\fancyfoot[C]{\bfseries Page \No \thepage}
\fancyfoot[R]{\bfseries By me}
By this, each page of my document has the following structure:
--
CHAPTER number. CHAPTER[SPACE] SECTION number. SECTION
[Content]
Page N° [] By Me
--
The problem is that, when the section has a long name, it mixes with the chapter title, and it is not quite beautiful.
What can I do ?
Thanks!