In texStudio basically the following code returns the expected result:
\documentclass{article}
\usepackage{mathtools}
\usepackage[japanese]{babel}
\begin{document}
\[ \begin{rcases}
\begin{rcases}
\begin{alignedat}{2}
V \\[-1.5ex]
\\[-1.25ex]
I -adj
\end{alignedat}
\end{rcases}
% Jisho \\
\text{Jisho}\\
\begin{rcases}
\begin{alignedat}{2}
NA -adj \\[-1.5ex]
\\[-1.25ex]
N1
\end{alignedat}
\end{rcases}
\begin{split}
Jisho\\Trans
\end{split}
\end{rcases}
\text{Result}
\]
\end{document}
As you can see, the two braces left are not aligned. Is it possible to align on the brace-symbol?


Thanks, Ben
– Ben Engbers Oct 02 '23 at 20:47\left. ...right\}construct means "no large delimiter on the left and a large curly brace on the right". So, yes, the.is essential in all three instances of\left.. The\left.instruction on line 10 is associated with the\right\}on line -5 (i.e., the fifth from the bottom). Do please check out the posting What are good learning resources for a LaTeX beginner? – Mico Oct 02 '23 at 20:57