I would like to use a multiline equation into an itemized list, but such that the bullet of the list is aligned with the first line of my equation.
The current code I use is like this:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{itemize}
\item $Q_x= Q' \cup D'$
\item \begin{align*}
\delta_x &= \left\{ \sum_{i=1}^j \ldots\text{~some big formula that spans the entire line~}\ldots\right\} \\
&\cup \left\{ \sum_{i=1}^j \ldots\text{~some other big formula that spans the entire line~}\ldots \right\} \\
\end{align*}
\item $q^0_x = (q_0, \{s_0\})$
\end{itemize}
\end{document}
But this yields the following output:

I have also tried to use
\item $\displaystyle\begin{aligned}...\end{aligned}$
But in this case the bullet of the list appears between the two lines:

Any idea how to align the bullet with the first line?
[t]and[b]options. – adl Oct 22 '10 at 15:21