Consider the following MWE:
\documentclass[12pt,a4paper]{article}
\usepackage[fleqn]{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{enumitem}
\newcommand{\C}{\mathbb{C}}
\begin{document}
\begin{enumerate}[label=(\roman*)]
\itemsep -0.2em
\item \begin{equation*}
e^z = \sum_{n=0} z^n / n!
\end{equation*}
\item \begin{equation*}
\sin z = \sum_{n=0} (-1)^n z^{2n+1}/ (2n+1)!
\end{equation*}
\item \begin{equation*}
\cos z = \sum_{n=0} (-1)^n z^{2n}/ 2n! \\
\text{which converges } \forall \ z \in \C
\end{equation*}
\item \begin{equation*}
\log_e (1 - z) = - \sum_{n=1} z^n/n
\end{equation*}
\item \begin{equation*}
(1 - z)^{-1} = \sum_{n=0} z^n \\
\text{which converges for } |z| < 1
\end{equation*}
\end{enumerate}
\end{document}
How can I get the enumeration numbers (i, ii, etc) on the same line as the equations?




equation*if you want the behavior ofequation? – TeXnician Apr 21 '17 at 17:32equationwon't do that. Further, I don't want the equations labeled as such, but enumerated. – Athena Widget Apr 21 '17 at 17:43enumitemnever mess with\itemsepmanually. – TeXnician Apr 21 '17 at 17:44equationwill do it :) – samcarter_is_at_topanswers.xyz Apr 21 '17 at 17:51align*inenumerate– barbara beeton Apr 21 '17 at 18:02https://tex.stackexchange.com/questions/193535/switch-between-leqno-and-reqno-options-of-amsmath-in-the-same-document– Athena Widget Apr 24 '17 at 13:07