奇数页和偶数页的边距大小不同

奇数页和偶数页的边距大小不同

我正在润色我的论文文档。它基于从中派生的自定义样式report,应该在奇数页和偶数页上提供不同大小的边距,但它不起作用。在.cls课堂上,有人试图解决这个问题:

\setlength{\oddsidemargin}{0.5in}  % really 1.5in
\setlength{\evensidemargin}{0.5in}  % really 1.5in

但它似乎根本不起作用,即当我改变值时,文档看起来是一样的。类文件可用这里. 我怎样才能让它工作?

答案1

对我来说,使用该twoside选项似乎效果很好,除非我遗漏了什么。这是一个平均能量损失

\documentclass[a4paper,plainchapterheads,yschapters,twoside, truedoublelespace]{ICMathsThesis}
\usepackage{lipsum}

\title{High Accuracy Methods for the Solution to Two Point Boundary Value
Problems}
\author{Steven David Capper}
\department{Mathematics}

\begin{document}
\maketitle

\lipsum
\end{document}

请注意,为了说明目的,我在 .cls 文件中使用了以下设置。

\setlength{\oddsidemargin}{0.9in}  % odd page left margin = 1 inch + \oddsidemargin ==> http://en.wikibooks.org/wiki/LaTeX/Page_Layout#Page_dimensions ; this can be negative
\setlength{\evensidemargin}{0.5in}  % even page left margin = 1 inch + \evensidemargin ; this can be negative
\setlength{\textwidth}{5.0in}

truedoublespace选项: 双倍行距

singlespace选项: 单倍空间

相关内容