你好,我需要使用罗马数字枚举(在左边)一个位于中心并且在右边带有标签的等式。
例子:
(一)x-2=3(E1)
有没有办法在前面插入罗马数字\begin{equation}
?
答案1
这里有一些类似的事情的可能性和解决方案,例如如何枚举方程?
如果您只需要单行方程,则下面的解决方案应该有效。
\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}