第一页的标题中有换行符,但后续页面中没有换行符

第一页的标题中有换行符,但后续页面中没有换行符

我的标题在第二行只有一个单词,看起来很奇怪,所以我通过\\在适当的位置添加来修复它。现在在奇数页上,标题位于顶部,换行符处有一个很长的空间。我如何保持标题在标题页上的样子,但在后续页面上更改它?

\documentclass[11pt]{amsart}
\title{this title had one lonely word \\but I fixed it with newline}
\author{emily}
\begin{document}
\maketitle
\newpage
\section{content goes here}
\newpage
\section{but now I have a problem on odd-numbered pages}
\end{document}

答案1

这应该可行:

\title[this title had one lonely word but I fixed it with newline]
      {this title had one lonely word \\but I fixed it with newline}

相关内容