答案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}