I'm using the \begin{cases}...\end{cases} to create a nested bracket structure, but I'm facing an issue where the tops of the braces in multiple levels are aligned at the same height, causing extra vertical space above the left and middle braces. This makes the braces sit too high above the first line of text.
I would like to reduce the extra space and align the top of the brace with the top of the first text line.
Here is the LaTeX code I'm using:
\begin{align*}
\text{clitics}
\begin{cases}
\text{phrase-final clitics}
\begin{cases}
\text{enclitic pronouns}
\begin{cases}
\text{possessive pronouns} \\
\text{enclitic demonstratives} \\
\text{connective \{be\}}
\end{cases}\\
\text{plural marker \{en\=e\}} \\
\text{case markers}
\end{cases} \\
\text{clause-final clitics}
\end{cases}
\end{align*}
Here is what I currently get:
Here is what I want to achieve:
Any suggestions on how to fix this? Thank you in advance!



