Possible Duplicate:
Separate labels in cases
I am looking for a way to number and references independently individual lines in a cases environment.
Here is an example:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{subequations}
\begin{align}
\begin{cases}
x + y = z \label{label1} \\
a + b = c
\end{cases}
\end{align}
\end{subequations}
First case is \eqref{label1} and the second case is \ldots
\end{document}
Ideally, I would like to achieve the following output:
First case is (1a) and the second case is (1b)
The problem is that label1 labels the whole set of equations and I see no way how to add a independent label for each line.
cases. – Marco Daniel Mar 15 '12 at 17:36