手动为不同页面设置双页偏移

手动为不同页面设置双页偏移

目前正在使用双面报告文档类撰写论文,该类将奇数页上的所有内容推到左侧,将偶数页上的所有内容推到右侧。

我已经以需要稍微调整的方式设置了我的文档。

我的标题页需要居中 - 使用 \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}

相关内容