1

How can one number a bunch of equations together with a right brace like shown below?

enter image description here

I work with the following document class:

\documentclass[pra,superscriptaddress, twocolumn,amsmath,amssymb]{revtex4}

and I tried the following but it doesn't work

    \begin{align}
           \left.
              \begin{split}
                    a &= b \\
                    c &= d \\
                    e &= f
             \end{split}
           \right\}
   \end{align}
schtandard
  • 14,892
User101
  • 209

1 Answers1

1

Use equation instead of align for the outer and aligned instead of split for the inner environment.

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{equation} \left. \begin{aligned} a &= b \ c &= d \ e &= f \end{aligned} \qquad \right} \end{equation}

\end{document}

MWE output

Have a look at section 3 of amsldoc.pdf (texdoc amsmath) for more details on the different math environments.

schtandard
  • 14,892