I am writing my thesis, in french. I also use fancyhdr. In the head of the page I have the chapter title. I had no problems for the first chapters, but the third include accentuation. I then had error messages telling me to increase headheight.
The package fancyhdr is supposed to figure out that size, but it overlooks accentuated letters.
To fix it, I tried to set a relative headheight by different means but so far I failed.
A MWE:
\documentclass[a4paper, 12pt, twoside]{report}
% start fancyhdr tunning
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[RO, LE] {}
% head too small. Local fix, setting bigger fixed value:
%\setlength{\headheight}{16pt} %commented out to get the headheight too small warning
% end fancyhdr tunning
\begin{document}
\chapter{nothing, just setting a weird title: l\`ik\'e s\^o}
\newpage
what do you mean, this thesis null?
\end{document}
Any suggestions? I'm thinking a box that doesn't print, or a command which suppress printing, something like widthof from calc...?
exoremunits instead ofpt.\usepackage[headheight=1.5em]{geometry}– Jan 16 '15 at 10:18\setlength{\headheight}{100pt}\setlength{\topmargin}{-80pt}. But if you expect to modify the heading, why shouldn't you expect to modify the head height? – egreg Jan 16 '15 at 10:19