I've pretty much got my thesis formatting figured out, just a few minor trims here and there left. One of them is the page numbering. I've used myheadings as my main page style, which makes the page number appear in the right edge of the header by default. However, my faculty wants it to appear in the upright corner of the page, vertically aligned with the header but horizontally located where the top and right margins cross each other.
They also wanted special margins, so for those I've used the geometry package.
Here's an example of my current settings:
Code: Select all
\documentclass{article}
\usepackage[top=2cm, bottom=2cm, left=4cm, right=2cm]{geometry}
\pagestyle{myheadings}
\begin{document}
\section{NEW SECTION}
Blah blah blablablablah
\end{document}