我想使用不带编号的引理环境,因为我只有一个引理。如果我使用该包,\newtheorem{lemma}{Lemma}
我会得到斜体和缩进的“引理 1”:
\documentclass[journal,transmag]{IEEEtran}
\newtheorem{lemma}{Lemma}
\begin{document}
\begin{lemma}
this is my lemma
\end{lemma}
\end{document}
如果我这么做
\usepackage{amsthm}
\newtheorem*{lemma}{Lemma}
我得到了“Lemma”,但字体粗体且普通。我想要斜体、缩进,但没有数字。我该怎么办?
答案1
更新
由于使用的类是IEEEtran
,amsthm
我最初建议的方法不是最佳选择(IEEEtran
以自己的方式处理类似定理的环境)。在这种情况下,由于该类没有为未编号结构提供准备,因此您可以以一致的方式实现所需的未编号结构,只需将相关计数器重新定义为\unskip
:
代码:
\documentclass[journal,transmag]{IEEEtran}
\newtheorem{lemma}{Lemma}
\renewcommand\thelemma{\unskip}
\begin{document}
Test text
\begin{lemma}
this is my lemma
\end{lemma}
Test text
\end{document}
初始版本(针对标准类)
如果我正确理解了您的请求,您可以使用remark
以下样式amsthm
:
代码:
\documentclass{article}
\usepackage{amsthm}
\theoremstyle{remark}
\newtheorem*{lemma}{Lemma}
\begin{document}
\begin{lemma}
Test lemma.
\end{lemma}
\end{document}