子方程中的括号

子方程中的括号

我有两个方程,位于子方程内。我怎样才能将括号 { 放在这些子方程的左侧?

在此处输入图片描述

PSI 尝试过一些案例,但不起作用 - 错误“缺少 $ 插入”

\begin{subequations} \begin{cases}
\begin{equation} subeq.1 \end{equation}
\begin{equation} subeq.2 \end{equation}
\end{cases} \end{subequations}

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

使用empheq环境同名包加载amsmathmathtools

\documentclass{article}
\usepackage{empheq}

\begin{document}

\begin{subequations}
  \begin{empheq}[left=\empheqlbrace]{align}
    x &  = y + z\\
    a^{2} &  =  b^{2} + c^{2}
  \end{empheq}
\end{subequations}

\end{document} 

在此处输入图片描述

答案3

附带amsmath包装:

\[
  left text \begin{cases}
               sub1 & 1\\
               sub2 & 2
            \end{cases}
\]

相关内容