将方程编号放在左边,将标签放在右边

将方程编号放在左边,将标签放在右边

我正在使用 amsart 类,其默认左侧方程编号。我需要编写一个方程,左侧带有数字,右侧带有注释,如下所示。

       qwer = asdf1    by Lemma A
(1)         = asdf2    since B = C
            = asdf3.

该命令\tag将编号改为注释,这不是我想要的。有没有类似的东西\rtag可以在右侧添加注释?谢谢。

答案1

也许我误解了你的问题,但这可能会有效:

\documentclass{amsart}

\usepackage{amsmath}

\begin{document}
    \begin{align}
        qwer &= asdf1    &&\text{by Lemma A}\notag\\
        &=asdf2    &&\text{since } B = C\\
        &= asdf3.\notag
    \end{align}
\end{document}

它产生: 图片

相关内容