[Tex/LaTex] How to make a short running author list

amsarttitles

I am writing a paper (using the amsart class) where we have four authors. The problem is that the author names on the even pages spill over onto the page numbers and obscure them. What I'd like to do is to define a short running author list (where, say, given names could be replaced by initials) and have it placed on top of the even pages.

But how does one do that within amsart?

Best Answer

It should just work to write

\author[short name]{long name}

for each author in the preamble.

For example:

\documentclass{amsart}
\title{Of Cabbages and Kings}
\author[Y.X.H.A.E.A.W.K. Conley]{Yo Xing Heyno Augustus Eisner Alexander Weiser Knuckles Conley}
\address{New York University}
\author[N.I. Lobachevski]{Nicolai Ivanovich Lobachevski}
\address{Kazan University}
\author[J.J.J. Schmidt]{John Jacob Jingleheimer Schmidt}
\address{Hisnameismyname U.}
\usepackage{lipsum}% just for dummy text

\begin{document}
\maketitle

\lipsum[1-100]

\end{document}