我正在使用 AMS 图书类来撰写论文。虽然要求以 A4 纸张大小提交初稿,但最终版本需要以(双面)A5 纸张大小提交。有没有一种简单的方法可以在 AMS 图书类中更改纸张大小?
在序言中
\documentclass[a4paper,12pt,twoside]{amsbook}
似乎不支持“a5paper”选项和“twoside”选项(将文本稍微左右对齐)。非常感谢您的帮助。
答案1
该类amsbook
与 兼容geometry
。
\documentclass{amsbook}
\usepackage[
a5paper,
twoside,
]{geometry}
\usepackage{kantlipsum}
\begin{document}
\frontmatter
\begin{titlepage}
The title of the thesis
and all paraphernalia
\end{titlepage}
\tableofcontents
\mainmatter
\chapter{Introduction}
\kant[1-5]
\chapter{First}
\kant[2]
\section{Abc}
\kant[3-5]
\end{document}
根据您(或教师)的喜好调整宽度和边距。