在方程组中添加括号

在方程组中添加括号

所以,我是第一次学习 Latex,并且我还在学习根基,但我想做一些类似于图片中给出的例子的事情。

在此处输入图片描述

答案1

\documentclass{article}

\usepackage{amsmath}

\begin{document}
\begin{equation}
\left\{
\begin{aligned}
 y & = x\\
 z & = a.
\end{aligned} \right.
\end{equation}
\end{document}

* 编辑 *

正如 Werner 所评论的,您也可以使用 cases 或 dcases 环境;后者需要 mathtools 包。cases 环境实际上用于行尾,前面有其他内容。

\documentclass{article}

\usepackage{mathtools}

\begin{document}
\begin{equation}
\left\{
\begin{aligned}
 y & = x\\
 z & = a.
\end{aligned} \right.
\end{equation}
\begin{equation}
\begin{dcases}
y  = x\\
z  = a.
\end{dcases}
\end{equation}

\end{document}

相关内容