\newtheorem 只是数字,没有名字

\newtheorem 只是数字,没有名字

我搜索了这个问题两个小时,没有找到任何东西。

我正在写一些数学材料,里面有“定义、定理、原因”之类的定理。现在我只想列出函数的一些特征,例如导数。所以我只想要定理的编号,不需要名字!

我希望你能明白我的意思......

我上传了一张图片,以便更清楚。你可以看到 (17.3) 没有名字,而 (17.4) 则有“Satz”的名字。

感谢您的帮助!

在此处输入图片描述

答案1

您可以尝试以下操作:

\documentclass{article}

\usepackage{amsmath, amsthm, amssymb}

\newtheoremstyle{dotless}{}{}{\itshape}{}{\bfseries}{}{ }{} %get rid of the
                                %dot after the thm number

\theoremstyle{dotless}
\newtheorem{numb}{}[section]

\renewcommand{\thenumb}{(\thesection.\arabic{numb})}

\begin{document}

\section{First Section}

\begin{numb}
  F\"ur alle $k\in\mathbb{Z}$ gilt $\exp(k)=e^k$.
\end{numb}


\end{document}

相关内容