具有 typearea 和 amsart 的对称页面

具有 typearea 和 amsart 的对称页面

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}

在此处输入图片描述

相关内容