如何在 \split 环境中对每一行进行编号?

如何在 \split 环境中对每一行进行编号?

我有以下代码,其中所有 x 变量都需要对齐,并且我需要对每行进行编号,以便稍后在工作中引用它。有人知道我该怎么做吗?

\begin{equation}
\begin{split}
0x_1&&&&&                &= 0 \nonumber \\ 
-2x_1& &- 8x_2& &+ 2x_3& &= 0 \\ 
x_1& &- 3x_2& &- x_3&    &= 0 
\end{split}
\end{equation} 

作为参考,上面的代码给出了以下结果:

在此处输入图片描述

答案1

像这样吗?

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'alignat' environment
\begin{document}

\begin{alignat}{3}
 0x_1&     &&               &&= 0 \nonumber \\ 
-2x_1&-8x_2&&+2x_3          &&= 0 \\ 
  x_1&-3x_2&&-\phantom{2}x_3&&= 0 
\end{alignat}
 
\end{document}

相关内容