The following code
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{itemize}
\item
\begin{align}
a&=b\\
&=d
\end{align}
\item
\begin{equation}
a=b\\
=d
\end{equation}
\end{itemize}
\end{document}
produces
How to avoid the linebreak after the bullet and have the equations (1 and 3) begin on the same line (with the bullet)? I should perhaps emphasize that I want to preserve the numbering of the equations.


alignedenvironment, used as$\begin{aligned}[t]....$– cmhughes Jan 11 '16 at 13:59