终点标记未显示,thmmarks,ntheorem

终点标记未显示,thmmarks,ntheorem

我无法让 ntheorem 中的 thmmarks 在 Latex 中运行。

我尝试在网上搜索,但找不到我做错的地方。我怀疑我遗漏了一些简单的东西。以下是我的代码示例:

\documentclass{article}
%
%
\usepackage{amsmath}
\usepackage[thmmarks,amsmath]{ntheorem}
%
%
\theoremstyle{break}
\theorembodyfont{\normalfont}
\theoremseparator{:}
\newtheorem{ex}{Example}
%
\begin{document}
\begin{ex}
This is my example. It's an example of an example \dots
\[
\int_{- \infty}^{\infty} e^{-x^2} \; \text{dx}
\]
\end{ex}
\end{document}

我尝试重新编译 ntheorem.sty,但没有成功。

谢谢您的帮助,我非常感激。

答案1

默认不显示任何结束标记。如果需要,您必须明确指定要使用哪个符号作为结束标记。

\theoremsymbol{*}
\newtheorem{ex}{Example}

(之后您需要编译两次。)

相关内容