手動設定不同頁面的雙頁偏移

手動設定不同頁面的雙頁偏移

目前正在使用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}

相關內容