[Tex/LaTex] Use braces in align

alignbraces

\begin{align*} 
&\mathbb Q \times \{2\}&&\\
&\\
&U_{\alpha e} &&\alpha\in I_2 \text{ and }e<2 \\
&\\
&U_{\alpha 0 0} \\
&U_{\alpha 1 0} \cup U_{\alpha 0 1} \cup U_{\alpha 0 2}&&\alpha\in I_0\\
&U_{\alpha 1 0} \cup U_{\alpha 1 1} \cup U_{\alpha 1 2}
\end{align*}

produces this:

enter image description here

I want to have a curly right brace between the two columns at the bottom, indicating that $\alpha\in I_0$ is for all three bottom rows.

Best Answer

One could stack those three blocks...

\documentclass{article}
\usepackage{amsmath,amssymb,stackengine}
\setstackEOL{\#}
\setstackgap{L}{1.1\baselineskip}
\stackMath
\begin{document}
\begin{align*} 
&\mathbb Q \times \{2\}&&\\
&\\
&U_{\alpha e} &&\alpha\in I_2 \text{ and }e<2 \\
&\\
&\left.\!\!\Centerstack[l]{
U_{\alpha 0 0} \#
U_{\alpha 1 0} \cup U_{\alpha 0 1} \cup U_{\alpha 0 2}\#
U_{\alpha 1 0} \cup U_{\alpha 1 1} \cup U_{\alpha 1 2}
}
\right\}&&\alpha\in I_0\\
\end{align*}
\end{document}

enter image description here