I'm using documentclass report with options twoside and openright. The pagestyle is headings. This is a minimal working example:
\documentclass[twoside,openright]{report}
\usepackage{blindtext}
\pagestyle{headings}
\begin{document}
\chapter{Chapter}
\blindtext \blindtext
\section{Section}
\blindtext \blindtext
\end{document}
Why is the page number at the first page of the chapter centered at the bottom and not on the right even though the document style headings works on all other pages? How to move the page number on the first page of a chapter to the right side as it should be using the document option openright?
\chapterissues\thispagestyle{plain}. – egreg May 3 '12 at 12:28