Why doesn't the equation number referral appear within the empheq/array environment ?
In this example I left out the formulas within the empheq environment (the problem remains with the formulas added).
\documentclass{article}
\usepackage{amsmath}
\usepackage{empheq}
\begin{document}
\begin{empheq}{align}
\label{eq:1}
\left\{\!\!\begin{array}{l}
\text{An equation reference should appear after the question mark, but doesn't ? \eqref{eq:2}}\\
\text{This doesn't work either : \eqref{eq:2}}
\end{array}\right.
\end{empheq}
I can definitely refer to the equation though, like this : \eqref{eq:2}.
\begin{empheq}{align}
\label{eq:2}
1+1=2
\end{empheq}
It compiles without throwing an error.
\end{document}
(??)is displayed, upon subsequent run, the equation number will appear. – Peter Grill Nov 7 '12 at 20:22