[Tex/LaTex] amsart margin control

amsartmargins

I am using amsart to typeset some documents. However, the default margins are very large and I would like to change them without altering anything else about amsart. Is there a way to reset just the margins to 1" all the way around? Right now it is much more.

Best Answer

The amsart class has its own method for setting some page parameters. Don't use the geometry package with it.

\documentclass{amsart}

\usepackage{kantlipsum} % for text filler

\setlength{\textwidth}{\paperwidth}
\addtolength{\textwidth}{-2in}
\calclayout

\begin{document}

\kant[1-20]

\end{document}

enter image description here

Related Question