Writing
\begin{enumerate}
\item $$math1$$
\item $$math2$$
\end{enumerate}
the math is not set exactly beside the numeration, but a bit lower instead. If I use
\begin{enumerate}
\item \begin{center}$math1$\end{center}
\item \begin{center}$math2$\end{center}
\end{enumerate}
instead, the the numeration is also centered and I don't want this. How can I set centered math beside the numeration?


$$to start display math environments, see Why is [ … ] preferable to $$ … $$?. If your only goal is to label/number equations, you might like\begin{equation} math1 \end{equation}or\begin{align} math1 \end{align}(the latter allows for multi-line equations, the generally not (i.e. requires some more work -splitfor example)) – moewe Sep 08 '15 at 09:30