[Tex/LaTex] How to enumerate equations

equationslistsnumbering

I want to enumerate equations in the following way:

  • An equation is in the same line as the bullet sign.
  • All equations are align to the left.
  • The number of an equation is align to the right.

Any suggestions how to make it?

Best Answer

Does this help?

\documentclass{article}
\makeatletter
\newdimen\mymathindent
\newenvironment{bulletequation}%
    {\@beginparpenalty\predisplaypenalty
     \@endparpenalty\postdisplaypenalty
     \refstepcounter{equation}%
     \trivlist \item[]\leavevmode
       \hb@xt@\linewidth\bgroup $\m@th% $
         \displaystyle
         \hskip\mymathindent}%
        {$\hfil % $
         \displaywidth\linewidth\hbox{\@eqnnum}%
       \egroup
     \endtrivlist}
\makeatother
\begin{document}
\begin{itemize}
\item \begin{bulletequation} 1+2=3\end{bulletequation}
\end{itemize}
\end{document}