Possible Duplicate:
numbering few equations together
I am currently using an align environment to write a system of equations. The code has the form:
\begin{align*}\label{myEnv}
%equation 1 here
%equation 2 here
%equation 3 here
\end{align*}
I am wondering how I can number this environment using only a single number. Right now if I change align* back to align, I will get three different numbers for each line within the environment.
I know for a fact that \label{myEnv} returns the correct number, but I don't know how to display it within the actual LaTeX document.