\documentclass[12pt]{report} \usepackage{fancyhdr} \pagestyle{fancy} \fancyhf{} \fancyhead[R]{\nouppercase {\rightmark}} \fancyfoot[C]{\thepage} \setlength{\headheight}{14.5pt} \usepackage{blindtext} \begin{document} \pagestyle{fancy} \chapter{Some Chapter} \section{Some Section} \blindtext \blindtext \blindtext \blindtext \blindtext \end{document}
As you can see, in the header it gives "1.1. Some Section" where it should be "1.1 Some Section" (Note the missing dot ofter the second 1!)
Any idea on how to remove it? I don't understand how it ends up there anyway, as it does not appear in the text itself...
Thanks for your help!