I want to write a little system of two equations with a left bracket over the two lines. Moreover I want to label each of these equations in order to refer to them.
I wrote this :
The system of the two equations \eqref{eq1} and \eqref{eq2} :
\begin{align}
\left\{
\label{eq1}
x+2y=8\\
\label{eq2}
x-y=3
\right.
\end{align}
However the compilation is failing. But this is working if I remove the \left\{ and \right. parts.

\left...\rightcan not break across lines. You need to use\bigl...\bigrand their cousins. – Andrew Swann Jan 16 '14 at 14:46