AASTex 包:如何取消方程式的编号?

AASTex 包:如何取消方程式的编号?

我正在使用AASTex 封装我一直在想如何取消方程式的编号(我讨厌方程式中的数字,你甚至不会在之后引用它们!)。到目前为止,我尝试了通常的方法:

  • 尝试将该\nonumber行放在等式后面(当然,在\begin{equation}and里面\end{equation}),但是不起作用。
  • 尝试执行\begin{equation*}\end{equation*},但包无法识别该命令。我尝试添加\usepackage{amsmath}包,但这导致 AASTex 包的各种功能失败。

这是我的 LaTeX 代码的一个工作示例:

\documentclass[manuscript]{aastex}
\newcommand{\vdag}{(v)^\dagger}
\newcommand{\myemail}{[email protected]}

\slugcomment{This is a slug comment.}

\shorttitle{A Short title!}
\shortauthors{N\'estor}

\usepackage[bookmarks,bookmarksopen,bookmarksdepth=2]{hyperref} 
\hypersetup{colorlinks=true,citecolor=blue,pdftitle={PDF title},pdfauthor={Nestor}}
\begin{document}

\title{This is a glorious title that appears up.}

\author{N\'estor\altaffilmark{1}}
\affil{My department, my university}
\email{[email protected]}
\altaffiltext{1}{My affiliation.}
\tableofcontents
\pagebreak
\section{Introduction}
Let's start with Einstein's equation:
\begin{equation}
E=mc^2. \nonumber
\end{equation}
Easy, right?
\end{document}

有任何想法吗?

答案1

正如你在给定的第 5 页上看到的文档\nonumber您只能在环境中使用eqnarray(但eqnarray不应再使用!)。将其添加到您的 MWE:

\begin{eqnarray}
 E=mc^2.  \nonumber
\end{eqnarray}

答案2

您可以使用\[...\]

\documentclass[manuscript]{aastex}
\begin{document}
Let's start with Einstein's equation:
\[
E=mc^2.
\]
Easy, right?
\end{document}

在此处输入图片描述

相关内容