I am writing a document using \documentclass{book}, and I need Latex to treat a single even page as a right-hand page (I know, I know), with all the consequences this entails, i.e. page number on the right side, inner margin on the left side etc. The other pages of the document must be unaffected by this change.
My first instinct was to use \addtocounter{page}{-1} \cleardoublepage in order to force a right hand side and subtract the page counter. However, this does not work, as LaTeX counts back to the next odd number, instead of simply subtracting one in order to count back to an even number.
Is there a way to achieve this?
Edit: I also need the page number to stay the same, so adding blank pages doesn't work.
Edit2: MWE
\documentclass[12pt]{book}
\usepackage[T1]{fontenc}
\usepackage{fourier}
\usepackage[english]{babel}
\usepackage{lipsum}
\begin{document}
\begin{center}
\Large{Titlepage}
\end{center}
\newpage
Abstract goes here
\end{document}
The goal is to get the Abstract page to retain page number 2, while being treated as a right-hand page.
\evensidemargin-\oddsidemargin. – John Kormylo Feb 27 '23 at 17:53\evensidemargin-\oddsidemargin, though! – F6uWJTHhK8 Feb 27 '23 at 17:55\documentclass...to\end{document}) that we can compile that shows your problem and how you have tried to solve it. As it is we have no idea what you have really done. – Peter Wilson Feb 27 '23 at 18:51\makeatletter\@twosidefalse\makeatotherand then undo the change a bit later on. – Teepeemm Feb 27 '23 at 21:18