This question is essentially an extension of this question about how to place right braces around cases.
I want to have three equations, all aligned, but I want only the latter two of the equations to be grouped by a right brace. I've tried things like
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{aligned}
\delta\psi&=i\beta\gamma^{5}\
.
\delta\sigma&=2\beta\pi\
\delta\pi&=-2\beta\sigma
\right\rbrace
\end{aligned}
which obviously doesn't work, as the linked \left\. ... \right\rbrace can't work across the line break in the aligned environment.
Essentially, I want something like this
but the right brace only connecting the lower two equations.
Any help would be much appreciated!





amsmath's user guide, sec. 3.7 "Alignment building blocks". – muzimuzhi Z Nov 08 '21 at 11:51