我目前正在使用
\newtheorem{lemma}[abc]{Lemma A.}
但间距不对。abc 在这里只是一个计数器。我可以让 A. 成为枚举的一部分吗?或者有没有办法删除“引理 A.”后面的空格?枚举应该只是 A.1、A.2、A.3 等等,字母 A 永远不会改变。
答案1
将计数器表示重新定义abc
为总是前面有A.
:
\documentclass{article}
\newcounter{abc}
\newtheorem{lemma}[abc]{Lemma}
\renewcommand{\theabc}{A.\arabic{abc}}
\begin{document}
Also see Lemma~\ref{lem:third}.
\begin{lemma}
First lemma.
\end{lemma}
\begin{lemma}[second]
Second lemma.
\end{lemma}
\begin{lemma}[last]
Third lemma.\label{lem:third}
\end{lemma}
\end{document}