计数器 - 示例

计数器 - 示例

各位。抱歉,我的英语不好。

我在这里借助一些帮助创建了一个环境,现在我需要柜台方面的帮助。

\newcounter{examplecounter}
\newenvironment{exemplo}{\begin{framed}\noindent \refstepcounter{examplecounter} {\textbf{Exemplo \arabic{examplecounter}.}} }{\end{framed}}

我在一本大书上使用这个环境,所以我需要按部分、按章节重置计数器,或者(如果可能的话)甚至使它像零件编号一样,例如部分.章节.#

我怎样才能做到这一点?

答案1

我只需加载ntheoremframed包并在序言中使用以下声明:

\theoremheaderfont{\bfseries}
\theorembodyfont{\upshape}
\theoremseparator\newline}
\newframedtheorem{example}{Exemplo}[\part]

相关内容