異なるページの2ページオフセットを手動で設定する

異なるページの2ページオフセットを手動で設定する

現在、奇数ページのすべてを左に、偶数ページのすべてを右に寄せる twoside レポート ドキュメント クラスを使用して論文を書いています。

私は、これを少し調整する必要があるような方法でドキュメントを設定しました。

タイトル ページを中央揃えにする必要がありますが、\newgeometry{centering} コマンドを使用すると簡単にできました。

次に、要約 (ページ i) の後に空白ページ、目次 (ページ ii) などが続くため、ページ番号に関係なく、後続のページをすべて右に寄せる必要があります。これらはすべて、ページ番号が偶数であるかのように右に寄せる必要があります。

その後、本文の番号は 1 から再開されます (別の空白ページの後)。ただし、文書の先頭までのページ数が原因で、この番号は右に押し出され (偶数ページの場合のように)、その後は通常どおり交互になる必要があります。

現在、ドキュメントは次のように設定されています。

\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}

関連情報