两个带花括号的方程式

两个带花括号的方程式

我想知道是否可以做到这一点。基本上,这与使用 {cases} 命令相反,在此先谢谢了! enter image description here

答案1

这是您问题的一个可能的解决方案。

enter image description here

\documentclass[a4paper,12pt]{article}

\usepackage{mathtools}

\begin{document}

\[
\left.
\begin{aligned}
2a &= b+1 \\
cd &= de
\end{aligned}
\right\}
\quad
\text{your text}
\qquad \left.
\begin{aligned}
5a &= b+1 \\
c+1 &= d-1
\end{aligned}
\right\}
\quad
\cdots
\]

\end{document}

答案2

mathtools包是的扩展amsmath,它定义了rcases环境:

\documentclass[a4paper,12pt]{article}

\usepackage{mathtools}

\begin{document}

\[
\begin{rcases}
\text{An equation}\\
\text{Another equation}
\end{rcases}
\qquad
\begin{rcases}
\text{Still another} \\
\text{And a last one}
\end{rcases}
\]
\end{document} 

enter image description here

相关内容