Currently writing my thesis using the twoside report document class which pushes everything on an odd page to the left and everything on an even page to the right.
I have set up my document in a way which requires this to be tuned slightly.
My title page needs centering - which was easy enough using the \newgeometry{centering} command.
I then need the following pages to all be pushed to the right regardless of page number since I have abstract (page i) followed by a blank page then table of contents (page ii) etc. These all need to be pushed to the right as if they had even page numbers.
Then my main body of text restarts numbering at 1 (after another blank page), however it just so happens that because of the number of pages leading up to the start of the document that this should be pushed to the right (as if it was an even numbered page), following this they need to alternate like normal.
This is how the document is set up currently:
\documentclass[12pt,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{afterpage}
\newcommand\blankpage{
\null
\thispagestyle{empty}
\addtocounter{page}{-1}
\newpage}
\begin{document}
\newgeometry{centering}
Title page
\afterpage{\blankpage}
\restoregeometry
\raggedbottom
\pagenumbering{roman}
\chapter*{Abstract}
Abstract
\setcounter{page}{1}
\addcontentsline{toc}{chapter}{Abstract}
\afterpage{\blankpage}
%%%%%%%%%%% ADDING CONTENTS PAGE
\tableofcontents
\afterpage{\blankpage}
%%%%%%%%%%
\chapter*{List of Abbreviations}
\afterpage{\blankpage}
\setcounter{page}{3}
\addcontentsline{toc}{chapter}{List of Abbreviations}
Abbreviations
%%%%%%%%%
\chapter*{Acknowledgements}
\afterpage{\blankpage}
\addcontentsline{toc}{chapter}{Acknowledgements}
Thanks
%%%%%%%%
\chapter{Intro}
\pagenumbering{arabic}
\setcounter{page}{1}
\chapter{2}
Chapter 2
\end{document}
Page 1 on the main text also starts on the right hand side as if it was a book, but because it has an odd page number it is pushed to the left and not the right.
– khazoona Mar 12 '19 at 20:31Ofcourse if this is a generic standard I am happy to keep to it and then provide myself a manual binding offset within the geometry package.
However, this still leaves me with the issue that in my pretext (title->acknowledgements) that even numbers are misaligned to be on the right hand page. I would like to keep my blank pages though between
– khazoona Mar 12 '19 at 20:51\cleardoublepagecan help you. – leandriis Mar 12 '19 at 21:06