ntheorem 中开头的数字

ntheorem 中开头的数字

我怎样才能让 ntheorem( \usepackage{ntheorem}) 写成

1.7 定理

代替

定理 1.7 ?

我认为这很容易,但用谷歌却找不到任何东西。

答案1

这确实很容易:使用change风格。

\documentclass[11pt]{article}
\usepackage{ntheorem}
\theoremstyle{change}
\theoremseparator{.}
\newtheorem{thm}{Theorem}[section]

\begin{document}

\section{Some section}

\begin{thm}
  Sometimes 2 plus 2 do not add up to 4.
\end{thm}

\end{document}

在此处输入图片描述

相关内容