I'm writing a document using the report class and I want the page numbers to be placed at the top right corner of each page. The command \pagestyle{myheadings} at the beginning of the document does exactly that for all pages but the chapter pages.
Anyone knows how to solve this problem ? Why is that happening only with chapter pages ?
Below I show you all a simple example to illustrate the problem. I've tried to find the answer using the search engine with no success.
Thanks in advance for any help.
Code: Select all
\documentclass[12pt]{report}
\begin{document}
\pagestyle{myheadings}
\chapter{ABSTRACT}
text
\newpage
text
\newpage
text
\end{document}