等式中的括号表示两个变量等于同一个值

等式中的括号表示两个变量等于同一个值

说我有;

 \begin{equation}
  \begin{cases}
     x = 0 \\
     y = 0 \\
     z = 0
    \end{cases}
    \qquad \text{and} \qquad
    \begin{cases}
     x = a \\
     y = a \\
     z = b
    \end{cases}
  \end{equation}

我怎样才能在第二个“案例”中插入括号(})来表示 x 和 y 等于 a。(即 } = a)。

我希望这是清楚的,如果不清楚,我可以概括一下 - 只要告诉我!

提前致谢!

答案1

你可以用以下方式打开它\left.,例如

\left. 
\begin{array}{c}
x\\
y
\end{array}
\right\rbrace = a

或者,

\begin{equation}
\left\lbrace
\begin{array}{l}
\left. 
\begin{array}{c}
x\\
y
\end{array}
\right\rbrace = a\\
z = b
\end{array}
\right.
\end{equation}

答案2

一个非常短的代码,带有一个rcases环境,来自mathtools,嵌套在cases环境中:

\documentclass{article}
\usepackage{mathtools}

\begin{document}

\begin{equation}
\begin{cases}
 x = 0 \\
 y = 0 \\
 z = 0
\end{cases}
\qquad \text{and} \qquad
\begin{cases}
    \begin{rcases}
     x\\
     y
    \end{rcases} = a\\
 z = b
\end{cases}
\end{equation}

\end{document} 

在此处输入图片描述

答案3

我不太明白你在找什么。这能回答你的问题吗?

\documentclass{article}
\usepackage{amsmath}

\begin{document}

    \begin{equation}
        \left\lbrace
        \begin{array}{l}
            \left.\begin{array}{l}
                x \\ 
                y \\ 
            \end{array}\right\rbrace = a \\ 
            z = b \\ 
        \end{array}\right.
    \end{equation}

\end{document}

在此处输入图片描述

相关内容