我如何重置我的定理计数(使用 mdtheorem)?

我如何重置我的定理计数(使用 mdtheorem)?
%   define environments with counters
\mdtheorem[style=mpdframe,  style=wide      ,%
                        style=greyfr    ,%
                        style=wideln    ]   {discuss}{Discuss Topic}    
\mdtheorem[style=mpdframe,  style=wide      ,%
                        style=greyfr    ,%
                        style=sqzblw    ,%
                        style=wideln    ]   {disc}{Discussion}  

我想重置{disc}每个章节的 mdtheorem 计数器。有人能告诉我如何重置以及在哪里重置吗 — 是在序言中还是在文档中?

谢谢。

答案1

添加尾随可选参数即可:

\mdtheorem[
  style=mpdframe,
  style=wide,
  style=greyfr,
  style=wideln,
]{discuss}{Discuss Topic}[chapter]
\mdtheorem[
  style=mpdframe,
  style=wide,
  style=greyfr,
  style=sqzblw,
  style=wideln,
]{disc}{Discussion}[chapter]

如果您想删除章节编号(但我不明白为什么),请添加

\renewcommand{\thediscuss}{\arabic{discuss}}
\renewcommand{\thedisc}{\arabic{disc}}

相关内容