I found this latex sample, close to what I need but fail to modify it like I need. I try to understand how to do, reading about eqparbox package but it doesn't help me more.
I want to make braces on several lines of left text (text 1,2,3,...) with explanations on the right side of the braces (explanation A, B). I would like to:
- align braces
- remove (1a, 1b, ...)
it only be text, no math or calculus.
here is the code:
\documentclass{article}
\usepackage{mathtools}
\usepackage{eqparbox}
\newcommand\EqMathBox[2][x]{%
\eqparbox{#1}{$\displaystyle #2$}%
}
\begin{document}
\begin{subequations}
\begin{align}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
& \begin{rcases}
\text{text 1} \
\text{text 2} \
\text{text 3} \
\end{rcases}%
\quad\text{explenation A} && \
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
& \begin{rcases}
\text{a longer text} \
\text{a quit more longer text} \
\end{rcases}
\quad\text{explenation B} &&
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{align}
\end{subequations}
\end{document}



eqparbox(if you like to have braces at the same horizontal positions) , for second: just remove environmentsubequations. See link, which you provided, again. – Zarko Nov 29 '22 at 10:59