AASTEX 摘要未显示在 TeXStudio 或 ShareLaTeX 中

AASTEX 摘要未显示在 TeXStudio 或 ShareLaTeX 中

我有以下代码:

\documentclass{aastex6}
\begin{document}

\begin{abstract}
This is a test abstract to ensure LaTeX is functioning.
\end{abstract}

testing
\end{document}

我在 TeXstudio 中编译此代码,得到一个空白页,页码位于顶部,左上角只有单词“testing”。页面上任何地方都看不到摘要。此外,如果我添加标题或作者,它们也无法正确显示。

当我上传 aastex.cls 文件时,ShareLaTeX 中发生了完全相同的事情。

我想知道如何才能正确显示摘要、标题、作者和其他环境。我对 LaTeX 完全陌生。

答案1

为了使标题、作者、所属机构、摘要等(标题部分)出现在 PDF 中,您应该\maketitle在摘要之后给出命令。但在类文件中,\maketitle当您给出第一个命令时会自动调用\section{}。以下示例现在将起作用:

\documentclass{aastex6}
\begin{document}

\begin{abstract}
This is a test abstract to ensure LaTeX is functioning.
\end{abstract}

\section{Introduction}
testing
\end{document}

你可以下载zip 文件并使用存档中包含的 sample.tex 文件作为提交的模板。

答案2

我遇到了另一个问题,症状相同。我通过移动 \title{} 和 \author{} 字段来修复它\begin{document} 这在 Sharelatex 中有效:

\documentclass[12pt,预印]{aastex}

\shortauthors{xx 等} \shorttitle{标题}

\title{长标题。}

\author{ Joe \textsc{Bloggs}\altaffilmark{1} } \affil{$^1$ 随便什么} \email{[电子邮件保护]} %%% 结束:作者列表

\开始{文档}

\begin{abstract} 摘要 \end{abstract} %\maketitle \section{简介}\label{sec:intr}

相关内容