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}

在此輸入影像描述

相關內容