I would like to itemize some equations but they don't appear on the same line as the bullets.
Here is a code example
\documentclass[11pt,a4paper]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
\begin{description}
\item[i) ] foo foo foo foo
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
\item[ii)]
\begin{equation}
x^2 + y^2 = z^2
\end{equation}
\end{description}
\end{document}
Is it possible to write the second equation next to the description so that it looks like this:
ii) x^2 + y^2 = z^2 (numberOfEq2)


descriptionrather thanenumerate? – barbara beeton Dec 04 '15 at 14:53