定义中的编号条件

定义中的编号条件

我如何在定义中制定编号条件,例如,如果以下两个条件成立,则理想 I 被称为...。

i) 一个

ii)B

我尝试使用 enumerate 和 \item 但效果不太好。

答案1

您可以加载包并在环境中enumitem设置环境,以使用小写罗马“数字”后跟。在对这些项目的任何交叉引用中,尾随括号可能应该被省略。enumeratedefn)

在此处输入图片描述

\documentclass{article}
\usepackage{enumitem}
\usepackage{ntheorem}
\theoremstyle{plain}
\theorembodyfont{\upshape}
\newtheorem{defn}{Definition}

\begin{document}
\begin{defn} \label{defn:three}
Consider a system that satisfies the following conditions:
\begin{enumerate}[label=\roman*), ref=\roman*]
\item \label{item:mumble} Mumble \dots
\item Grumble \dots
\item \label{item:cough} Cough cough \dots
\end{enumerate}
Such a system is called a \dots
\end{defn}

Conditions \ref{item:mumble} and \ref{item:cough} in Definition \ref{defn:three} amount to \dots
\end{document}

相关内容