I am writing a PhD thesis which contains a long chapter title:
On the edge of universality of sequential P systems
When I use standard headings pagestyle, then the title in the heading overflows and it looks ugly:
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\pagestyle{headings}
\begin{document}
\chapter{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
There are other options, e.g. wrapping long title to the next line. It is somewhat better, but it is still pretty unreadable:
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\chapter{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
Another option is to display shorter version of chapter title in the heading:
\documentclass[a4paper,12pt,oneside,openany,pagenumber=footcenter]{book}
\begin{document}
\chapter[On the edge of universality of seq\dots]{On the edge of universality of sequential P systems}
\section{Active membranes}
\pagebreak
second page
\end{document}
I think, anything is possible. But what is the best practice for these long titles? My department has no rules for this, even this manual has no mention of it. I am asking for a general recommendation: What would you do?




\documentclass{...}and ending with\end{document}. – Feb 21 '15 at 13:43\ldots– David Carlisle Feb 21 '15 at 14:51headingspage style also only uses either a chapter or a section title it doesn't try to put both on the same page. – David Carlisle Feb 21 '15 at 16:30