物品的特殊标签

物品的特殊标签

我在用

\begin{enumerate}[start=1,label={{\bf{Claim \arabic*.}}}]
\item
....
\item
\begin{enumerate}

并且运行良好。我得到的输出为

输出

现在,我时不时地想要一个不同的项目标签,例如:

希望的输出

有没有什么快捷技巧?我看不到。我正在使用\usepackage{enumitem}。谢谢。

答案1

您可能误用了(滥用?)软件包的功能enumitem。我认为您最好加载amsmthm软件包并定义一个名为 的编号环境claim和一个名为 的未编号环境comment

在此处输入图片描述

\documentclass{article}
\usepackage{amsthm}
\theoremstyle{definition} % use upright lettering
\newtheorem{claim}{Claim}
\newtheorem*{comment}{Comment}

\begin{document}

\begin{claim} 
bla bla bla 
\end{claim}
\begin{comment} 
ble ble ble 
\end{comment}
\begin{claim} 
bli bli bli 
\end{claim}
\end{document}

相关内容