我想要制作一个类似这样的列表。
定理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}