定理标记位置错误

定理标记位置错误

我对 ntheorem 有以下问题:每当 ntheorem 环境以显示的方程式结束时,thmmark 就会完全错位。例如:

\documentclass{article}

\usepackage{amsmath}
\usepackage[thmmarks,amsmath]{ntheorem}

\theoremstyle{plain}
\theoremsymbol{*}
\newtheorem{Def}{Definition}

\begin{document}

\begin{Def}
    \label{DefFoo}
    Lorem ipsum
    \begin{align*}
        x=y, && y = z
    \end{align*}
        Lorem ipsum
    \begin{align}
        \label{EqB}
        a = b
    \end{align}
    %Lorem ipsum %comment this line in to make it work
\end{Def}

\end{document}

产量:错误放置

但是如果最后一行有注释的话,这是正确的:正确放置

相关内容