答案1
我建议您加载该enumitem
包并定义一个使用小写罗马字母的专用枚举类列表环境。
\documentclass{article}
\usepackage{enumitem}
\newlist{romanenum}{enumerate}{1}
\setlist[romanenum]{label=(\roman*)} % roman numerals, encased in parentheses
\begin{document}
\begin{romanenum}
\item For any natural number \dots
\item If $a,b,c,d\in M$, \dots
\end{romanenum}
\end{document}