方程组:加法 (Beamer / 文章)

方程组:加法 (Beamer / 文章)

我正在尝试重新创建类似下图的东西,它是在一本书中找到的。它是方程组解的一部分。

enter image description here

我已经能够使用软件包cases提供的环境创建方程系统amsmath。我仍然需要添加“+”号以及方程系统下方的行。

我正在使用beamer,但稍后我需要对使用相同的想法article。如何实现?

谢谢你!

编辑:这是一个MWE,使用article类:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

$ 
\begin{cases} x + y = 1 \\ x  - y = -1 \end{cases} 
$

\end{document}

答案1

像这样吗?

enter image description here

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{aligned}
+ \left\{ \begin{array}{rcr}
   x + y &= &1 \\ 
   x  - y &= &-1 \end{array} \right. \\
   \hline
 \begin{array}{rcr}
 2x & =&\hphantom{-}0
 \end{array}
\end{aligned}
\end{equation}

\end{document}

相关内容