对齐列表中的数字

对齐列表中的数字

我正在尝试对齐列表中的数字,如下图所示。目前,当我这样做时,只需开始一行新代码,(i) 和 (ii) 就会在左侧对齐,但我如何让它们在右侧对齐呢?

在此处输入图片描述

答案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}

相关内容