使用不带编号的词条,且每个词条的序言中不包含单独的内容

使用不带编号的词条,且每个词条的序言中不包含单独的内容

如果这个问题在其他地方已经得到解答,我深感抱歉;我搜索过但没有成功。

我想在我的论文中使用引理,但我想用一种虚拟的方式:我不想在每个引理的序言中插入不同的内容,而是只想使用

\documentclass{article}
\usepackage{amsthm, amssymb}

\newtheorem{lemma}{Lemma}

\begin{document}
\begin{lemma}
Here is my first lemma
\end{lemma}

\begin{proof}
Here is the first proof \& \qedhere 
\end{proof}

\begin{lemma}
Here is my second lemma
\end{lemma}

\begin{proof}
Here is the second proof \& \qedhere 
\end{proof}


\end{document}

但随后它会自动插入一个数字。这只是一项家庭作业,所以我不需要为每个词条添加一个数字。有没有简单的方法可以去掉编号?我试过在各个地方加上星号……

答案1

只需使用*定义的形式

\newtheorem*{lemma}{Lemma}

相关内容