使用分割来对齐方程以及所应用的运算

使用分割来对齐方程以及所应用的运算

我想在多行上显示一个方程。我知道我可以将多行方程与环境对齐split。但现在我想用等号对齐方程,并在方程末尾显示应用的运算,如下所示:

3 * x = 15 | /3
x     = 5

到目前为止,我有这段代码,但我不知道哪种方法是对齐应用操作的最佳方法。

\begin{equation}
    \begin{split}
        U_{VS1} - I_{C} \cdot R_{1} &= U_{VS1} - I_{C} \cdot R_{2} \quad \lvert \, + I_{C} \cdot R_{2} \\
    \end{split}
\end{equation}

答案1

split是错误的工具:你需要alignedat

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{alignedat}{2}
  &U_{VS1} - I_{C}R_{1} &&= U_{VS1} - I_{C}R_{2} \quad \lvert {} + I_{C} R_{2} \\
  &U_{VS1}              &&= U_{VS1}
\end{alignedat}
\end{equation}

\end{document}

诀窍是拥有两对左右列,仅使用左对齐的列。

在此处输入图片描述

相关内容