如何使用 AASTeX 包强制摘要适合标题页(如果有空间)?

如何使用 AASTeX 包强制摘要适合标题页(如果有空间)?

我正在尝试使用 AASTeX 包来格式化一篇论文。当我用标题、作者、作者信息和摘要排版论文时,摘要会自动强制到第二页。我使用的是手稿文档类,而不是 preprint2 模式。显然,带有 longabstract 样式选项的 preprint2 文档类会将摘要强制到第二页,而其他文档类则不会。从肉眼来看,我的摘要应该能够放在标题页上。即使我将摘要缩减为一句话以查看它是否太长,摘要仍然在第二页。

有没有什么方法(最好是在 AAS 惯例内)将摘要强制放到标题页上?

编辑:这是一个建议的最小工作示例:

\documentclass[manuscript]{aastex}

\begin{document}

\title{Here is an example title with the same number of characters as the title in the paper..}

\author{Sam A. Weiss\altaffilmark{a}, Fake Name Num1\altaffilmark{b}, 
and Fake Name Num2\altaffilmark{c}}
\affil{Department of Physics, This is a Name I Made Up University, 000 Nothing Street,\\ 
New Place, XX, 00000 USA}

\altaffiltext{a}{[email protected]}
\altaffiltext{b}{[email protected]}
\altaffiltext{c}{[email protected]}

\begin{abstract}
Here is the abstract. It should be on page two no matter the length.
\end{abstract}

\section{Introduction}
This is needed. Otherwise, nothing will print out.

\end{document}

答案1

这是设计行为,因此您不应该对提交给 AAS 期刊的论文进行更改。

manuscript在其他情况下,为了在同一页面中 模仿具有摘要的样式,您可以使用:

\documentclass[preprint]{aastex}
\doublespace 
...

梅威瑟:

平均能量损失

\documentclass[preprint]{aastex}
\doublespace 
\usepackage{lipsum} % for dummy text
\title{Here is an example title.}
\author{Sam A. Weiss\altaffilmark{a}, Fake Name Num1\altaffilmark{b}, 
and Fake Name Num2\altaffilmark{c}}
\affil{Department of Physics, University of Nowhere, 000 Nothing Street, New Place, XX, 00000 USA}
\altaffiltext{a}{[email protected]}
\altaffiltext{b}{[email protected]}
\altaffiltext{c}{[email protected]}
\begin{document}
\begin{abstract}
\lipsum[2]
\end{abstract}
\section{Introduction}
\lipsum[1]
\end{document}

相关内容