如何设置\geometry
双面文档的页边距?到目前为止,我使用了twoside
中的选项documentclass
,该选项会自动加宽奇数页和偶数页相对侧的左/右边距。
编辑:我的询问并非完全实用,因为我想知道如何在“没有”该twoside
选项的情况下实现相同的结果。
答案1
通常情况下,只需使用left
和right
键,因为它们实际上是模式中的inner
和的同义词。(或者,可以指定和键。)如果您想要禁用交替页面上的边距交换,请添加该选项。outer
twoside
textwidth
hmarginratio
asymmetric
\documentclass[twoside]{article}
\usepackage[top=2cm,bottom=4cm,left=1.5cm,right=3cm,asymmetric]{geometry}
\usepackage{lipsum}
\begin{document}
\lipsum[1-15]
\end{document}
编辑:到目前为止,您已经twoside
在文档类中使用了选项,但是您想放弃此选项吗?那么,请使用twoside
选项geometry
。