LaTeX 中的左编号方程

LaTeX 中的左编号方程

我试图在左边对方程式进行编号,同时仍在 LaTex 中保持它们左对齐。

我用的是这个:

\documentclass[11pt,leqno]{article}
\usepackage{amsmath}
\begin{align}
EQUATION HERE
\notag
\end{align}%

我也尝试过用equationeqnarray代替align,但这两种组合都无法成功地对左侧的方程进行编号。它们总是在右侧进行编号。

答案1

从一\notag开始你就没有数字。

左侧有数字;请注意,align不应用于单行显示。

\documentclass[11pt,leqno]{article}
\usepackage{amsmath}

\begin{document}

This has the number at the left
\begin{equation}
EQUATION HERE
\end{equation}
and also this one
\begin{align}
a&=b\\
c&=d
\end{align}

\end{document}

在此处输入图片描述

如果您还希望显示左对齐,请添加该fleqn选项。

\documentclass[11pt,leqno,fleqn]{article}
\usepackage{amsmath}

\begin{document}

This has the number at the left
\begin{equation}
EQUATION HERE
\end{equation}
and also this one
\begin{align}
a&=b\\
c&=d
\end{align}

\end{document}

在此处输入图片描述

切勿使用eqnarray

相关内容