答案1
窃取@Bernard 的例子,我将其扩展以显示多行情况。这[t]
是块上的必要选项aligned
,以防止块垂直居中,但不幸的是,它也会将方程编号放在该组件的顶行。
\documentclass{article}
\usepackage{empheq}
\begin{document}
\begin{subequations}
\begin{empheq}[left=\empheqlbrace]{align}
x & = \begin{aligned}[t]
& y + z + \text{something to make this wider}\\
& + \text{more stuff to produce multiple lines}
\end{aligned}\\
a^2 & = b + c
\end{empheq}
\end{subequations}
\end{document}
另一条评论...bernard 的回答使用“unicode”上标。并不总是有效(并且没有希腊字母或数字以外的任何东西的 unicode 上标),因此不建议在数学中使用它们。
但除此之外,伯纳德的回答是可靠的。
答案2
答案3
附带amsmath
包装:
\[
left text \begin{cases}
sub1 & 1\\
sub2 & 2
\end{cases}
\]