仅对方程数组中的部分方程进行编号

仅对方程数组中的部分方程进行编号

我有一个包含大约 9 个方程的方程数组,但我希望只对其中的一些方程进行编号。我该怎么做?

答案1

您可以使用\notagand/or \nonumberamsmath或改进的mathtools包):

\documentclass{article}
\usepackage{mathtools,amssymb}


\begin{document}
\begin{align}
  x &= y \\\nonumber
  x &= 3 \\
  y &= 10 \\ \notag
 \therefore\ x &\neq y \\
   x &= y \\\nonumber
  x &= 3 \\
  y &= 10 \\ \notag
 \therefore\ x &\neq y \\
 ? &=?
\end{align}
\end{document}

在此处输入图片描述

相关内容