使用“newcommand”更改附录中词条的计数方式

使用“newcommand”更改附录中词条的计数方式

我使用以下命令来计算我的论文中的引理。

\newcounter{lcount}
\newcommand{\lem}[2]{\refstepcounter{lcount}\label{#1}\vspace*{0.5cm}\noindent \textbf{Lemma \thelcount.}\ \ {#2}\vspace*{0.5cm}}

我该如何修改它,以便附录中的引理以定义附录的字母开头(例如Lemma A1)?我只能找到使用包的线程chngcntr。谢谢。

答案1

你可以做

\appendix
\setcounter{lcount}{0}
\renewcommand{\thelcount}{A\arabic{lcount}}

相关内容