对齐编号工作方式奇怪

对齐编号工作方式奇怪

我的理解是align编号的工作原理与相同equation。但就我而言,它的工作方式非常奇怪。请参阅我的代码如下:

\documentclass[12pt]{article}

\usepackage{amsmath,amssymb}

\begin{document}
\begin{align}
a &= a \\ \label{a}
b &= b    \label{b}
\end{align}

\Equation eqref{a} is different from equation \eqref{b}.
\end{document}

我总是得到正文中第一个等式非常奇怪的结果(带有两个问号)。请看我的结果:

在此处输入图片描述

我做错了什么?

答案1

\label{a}必须先写\\

其中有一个\Equation错误,很可能是打字错误。

\documentclass[12pt]{article}

\usepackage{amsmath,amssymb}

\begin{document}
\begin{align}
a &= a  \label{a} \\
b &= b    \label{b}
\end{align}

Equation \eqref{a} is different from equation \eqref{b}.
\end{document}

在此处输入图片描述

相关内容