oneside
包中有一个选项typearea
。它非常适合在线文档,因为每页的页面布局都相同。但是,当与 amsart
文档类一起使用时,偶数/奇数页上的页眉不会切换。在双面模式下,奇数页上有标题,偶数页上有作者姓名。是否可以使页面对称但页眉可以切换?
geometry
也欢迎解决方案。
答案1
该类amsart
有自己的方法来设置分页参数。在单面或双面模式下,布局是对称的。
\documentclass[a4paper,twoside]{amsart}
\usepackage[auto-lang=false]{lipsum} % for mock text
\setlength{\textwidth}{17cm}
\setlength{\textheight}{25cm}
\calclayout
\begin{document}
\title{Title of the paper}
\author{Me}
\maketitle
\section{Introduction}
\lipsum[1-12]
\section{Another}
\lipsum[13-24]
\end{document}