我怎样才能用不以“(i)”开头的罗马数字进行枚举?

我怎样才能用不以“(i)”开头的罗马数字进行枚举?

我需要一个以 开头的枚举列表,(iii)而不是(i)。有办法吗?

我尝试过之前的建议问题但我还是不知道该怎么做。

先感谢您。

答案1

enumitem包装,

\documentclass{article}
\usepackage{enumitem}

\begin{document}
Default style
\begin{enumerate}
  \item first
  \item second
\end{enumerate}

Roman numbering starting with three
\begin{enumerate}[label=\roman*., start=3]
  \item first
  \item second
\end{enumerate}

Configured format of item label
\begin{enumerate}[label=(\roman*), start=3]
  \item first
  \item second
\end{enumerate}
\end{document}

在此处输入图片描述

相关内容