2

Hi I need to enumerate (on the left) using roman numerals an equation which is centered and has a tag on the right.

Example:

(i) x-2=3 (E1)

Is there a way to insert roman numeral to itemize before \begin{equation}?

Sigur
  • 37,330

1 Answers1

1

There are some possibilities and solutions for similar things here like How to enumerate equations?

If you need only single line equations the solution below should work.

\documentclass{article}
\newcommand{\myItem}[2]{\item[(#1)] \hfill #2   \hfill
   \refstepcounter{equation}(\theequation)}

\begin{document}

\begin{itemize}
\myItem{iv}{$1 = 2 -1$}
\end{itemize}

\end{document}
nirolo
  • 95