我想在我的文档中定义一些新的数学语句。由于可以使用一些编号系统,我考虑使用如图所示的部分。但我想知道存在哪些可能性。
我希望有一个标题myDefn
。目前文本打印在同一行,但我希望只有定义编号旁边的标题,实际文本从下一行开始。
尽管人们可以将所有定理置于相同的编号方案下,而将推论置于不同的编号方案下,但我发现这有时会令人困惑,因为推论通常是定理的后续。
\documentclass{article}
\newtheorem{myDefn}{Definition}[section]
\begin{document}
\section{Mathematical Statements}
\begin{myDefn}
A \textit{prime number} is a natural number greater than 1 that has no positive divisors other than 1 and itself.
\end{myDefn}
\end{document}