如何在 amsbook 中将纸张尺寸设置为半信纸(5.5 x 8.5 英寸)?

如何在 amsbook 中将纸张尺寸设置为半信纸(5.5 x 8.5 英寸)?

我想打印一本 5.5 x 8.5 格式的书(美国信纸的一半)。如何使用 amsbook 文档类设置纸张尺寸?还有其他选择吗?

答案1

您可以使用geometry

\documentclass{amsbook}
\usepackage{geometry}
\usepackage{kantlipsum}

\geometry{
  paperheight=8.5in,
  paperwidth=5.5in,
  heightrounded,
}

\begin{document}

\chapter{Test}

\kant

\end{document}

您可能想要设置其他geometry选项。

在此处输入图片描述

答案2

使用geometry包装。另外,我假设您想要 8.5 x 5.5,因为美国信件是 8.5 x 11。但是,如果不是这种情况,则很容易更改。

代码:

\documentclass{amsbook}
\usepackage{lipsum}
\usepackage[paperheight=5.5in,paperwidth=8.5in,margin=2in]{geometry}
\begin{document}
\lipsum[1]
\end{document}

得出:

在此处输入图片描述

相关内容