代码

代码

我找不到一种方法来编写多行方程,稍后我将其称为单个方程,并在某些行上写下注释。

我想要的东西非常类似于这里:

对齐环境中的多行文本注释

和这里:

在对齐环境中仅显示一次方程编号

可以将它们结合起来吗?

答案1

您也可以在环境中align使用,而不是。alignedequation

代码

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}\label{my eq}
\begin{aligned}
  a&=b+c &&\text{note 1} \\
  &=d+e+f&&\text{note 2}
\end{aligned}
\end{equation}

I wrote \eqref{my eq}.
\end{document}

输出

在此处输入图片描述

相关内容