枚举遵循定理、引理等编号的列表

枚举遵循定理、引理等编号的列表

我想要制作一个类似这样的列表。

定理3.2 集合具有以下性质:

(3.2.1)非空。

(3.2.2)紧凑。

我不知道是否有办法将常规枚举命令转换为类似这样的命令。谢谢!

答案1

使用enumitem灵活地指定label包括\thetheorem

在此处输入图片描述

\documentclass{article}

\usepackage{enumitem}
\newtheorem{theorem}{Theorem}[section]

\begin{document}

\setcounter{section}{2}% Just for this example
\section{A section}

\setcounter{theorem}{1}% Just for this example
\begin{theorem}
  The set has the following parameters:
  \begin{enumerate}[label={(\thetheorem.\arabic*)},leftmargin=*]
    \item Non-empty and
    \item Compact.
  \end{enumerate}
\end{theorem}

\end{document}

相关内容