我该如何处理索赔编号?

我该如何处理索赔编号?

我已经按以下方式定义了我的声明:\newtheorem{claim}{Claim}编号工作得很好,但是当我想跳过一些编号时我该怎么办。那就是:

权利要求1:....

权利要求2:....

宣称://只需声明,无需编号!

权利要求3:....

答案1

您可以通过以下方式声明未编号的索赔

\newtheorem*{claim*}{Claim}

带星号的版本不产生数字。当你不想编号时,使用

  \begin{claim*}
    Some claim with no number
  \end{claim*}

梅威瑟:

\documentclass{article}
\usepackage{amsthm}
\newtheorem{claim}{Claim}
\newtheorem*{claim*}{Claim}
\begin{document}
  \begin{claim}
    Some claim
  \end{claim}
  \begin{claim}
    Some claim
  \end{claim}
  \begin{claim*}
    Some claim with no number
  \end{claim*}
  \begin{claim}
    Some claim
  \end{claim}
\end{document}

在此处输入图片描述

相关内容