如何在数学模式之外生成一系列编号语句并且不增加方程计数器?

如何在数学模式之外生成一系列编号语句并且不增加方程计数器?

我想在不使用通用方程计数器和数学模式的情况下重现以下内容。我该怎么做?

在此处输入图片描述

答案1

像这样吗?

 \documentclass{article}  
  \begin{document}
 
 \newcounter{gary}
 
 \def\Gary#1{\refstepcounter{gary}{\parindent30pt\par #1 \hfill(\arabic{gary})}}

Consider the arguments:

\Gary{All square numbers\ldots}
\Gary{All non-negative numbers\ldots}
\Gary{Therefore\ldots}

Do you

\end{document}

在此处输入图片描述

相关内容