设置论文边距

设置论文边距

我的大学要求论文的装订和打印规格如下:

There should be a margin of at least 1.5 inches, preferably 2 inches (5cm),   
on the left side of the page, 
both for typescript and diagrams, to allow for binding. Other margins should
be of at least 1 inch (2.5 cm). 

如果我计划进行双面打印A4,如何在乳胶中确保这一点?序言中的以下内容是否足够?

\setlength{\oddsidemargin}{16mm} 
\setlength{\textwidth}{140mm}  
\setlength{\textheight}{200mm}  
\setlength{\topmargin}{8mm}

我在别人的论文中发现了这一点。我的理解是,oddsidemarin设置奇数页的左边距,减去 1 英寸,因此奇数页的左边距为 1 英寸(25.5 毫米)+16 毫米:1.63 英寸。然后A4尺寸与我的意思是奇数页的右边距留有余量。同样,意味着210mm w x 297mm顶部 和底部边距都有余量,所以每个都有。不知道这里在做什么。\setlength{\textwidth}{140mm}oddsidemargin210-41.5-140=28.5mm=1.11inch\setlength{\textheight}{200mm}297-200=97mm=3.8inches1.9inches\topmargin

我也需要设置吗evensidemargin?上述设置是否正确,符合大学规范?

答案1

如果您定义内边距和外边距而不是左/右或奇/偶,并使用 documentclass 的属性在单边和双面之间切换,那就没问题了。下面的示例对我来说很好用。

\documentclass[oneside]{book}%

\usepackage{geometry}
\usepackage{lipsum}

\newgeometry{
    top=1in,
    bottom=1in,
    outer=1in,
    inner=2in,
}

\begin{document}

\lipsum[1-20]

\end{document}

相关内容