I'm having a problem getting the page numbers of my document to display correctly. I'm writing my degree dissertation, and I need to include an abstract. I currently have:
Code: Select all
\documentclass[10pt,twoside,a4paper]{report}
\usepackage{mystyle}
\begin{document}
\sffamily
\input{./tex/titlepage.tex}
\cleardoublepage
\subfile{./tex/abstractpage.tex}
\tableofcontents
\listoffigures
\listoftables
\cleardoublepage
\begin{multicols}{2}
%% BODY OF DOCUMENT %%
\end{multicols}
\end{document}
So my problem is in two parts: firstly, the page number is displayed on the blank page between the title and the abstract as '2', then the abstract with no page number, then the ToC appears, also marked as page '2', and then numbering continues from there. If I could make the '2' on the blank page disappear that would be enough to satisfy what I need.
The second part of the problem is that the whole document is formatted in sans serif using the \sffamily command, but I can't get the page numbers to display in sans serif at all.
Any help here would be greatly appreciated.
Thanks
McG