Constraints:
I have to use top aligned aligned to let the baseline of the top equation be aligned with the enumerate label.
Issues:
The curly brace goes beyond the top equation so it does not look good.
Questions:
How to prevent the opening curly brace from going out over the top equation?
\documentclass[preview,border=12pt,12pt,varwidth]{standalone}
\usepackage{mathtools,enumitem}
\begin{document}
Find the solution of
\begin{enumerate}[label=\alph*.]
\item
$\!
\left\{
\begin{aligned}[t]
2x +5y &=12\\
3x -8y &=11
\end{aligned}
\right.
$
\item
$\!
\left\{
\begin{aligned}[t]
-2x -3y &=7\\
x -2y &=1
\end{aligned}
\right.
$
\end{enumerate}
\end{document}






adjustboxuseful to fix this problem? I haven't tried it yet. – kiss my armpit May 16 '14 at 04:45\cropdelimsmacro defined in this answer to achieve this effect. (\item $\!\cropdelims \left\{ {\begin{aligned}[t] 2x +5y &=12\\ 3x -8y &=11 \end{aligned} } \right.$) – Paul Gessler May 16 '14 at 05:03\item \raisebox{-.5\dimexpr\jot+\baselineskip}{$ \left\{\begin{array}{r@{}l} 2x + 5y & {}= 12 \\[\jot] 3x - 8y & {}= 11 \end{array}\right. $}– Werner May 16 '14 at 05:40casesenvironment. – Ronny May 16 '14 at 06:04