[Tex/LaTex] two equations with curly brace

brackets

I would like to know if it is possible to make this. Basically its kind of the opposite from using the {cases} command
Thanks in advance!
enter image description here

Best Answer

It is a possible solution of your question.

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}