my chapter title is too long and I have the necessity to cut it in two different lines. well which could be the best way to cut it?I tried using \newline but unfortunately this modification affects also title page in every page.
Asked
Active
Viewed 4,022 times
2
1 Answers
8
Sectioning commands like \chapter feature an optional argument that will be used in the header/footer and the table of contents. So use the optional argument of \chapter and omit the line break there.
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\chapter[A very long chapter title]{A very long \\chapter title}
\lipsum
\end{document}
lockstep
- 250,273
A very long chapter titlecan become small? – Mazzy Apr 01 '12 at 12:58scrpage2to customize the appearance of the header/footer. Have a look at http://tex.stackexchange.com/questions/1247/how-to-customize-head-and-footlines – lockstep Apr 01 '12 at 13:01