我需要帮助。我想显示“示例 5.1.1”(即第 5 章第 1 节的第一个示例),但当我重写代码时遇到了问题。这是我的代码:
% Counter Reset
\pgfkeys{
/infoBulle/math/.cd,
counterReset/.store in=\infoBulle@mathCounterReset,
counterReset = chapter, % Use the new counter}
%------Example-------
\NewTranslation{english}{example}{Example}
\NewTranslation{french}{example}{Exemple}
\NewTranslation{german}{example}{Beispiel}
\newcounter{example}[\infoBulle@mathCounterReset] % The counter will reset at each new section
% Redefine how the counter is printed
% \renewcommand{\theexample}{\thesection.\arabic{example}}
\NewDocumentEnvironment{example}{o}{%
\stepcounter{example}%
\begin{mdframed}[%
style=infoBulle,
linecolor=mathematicalColor,
frametitle=\@titleContentMath{\GetTranslation{example}}{\theexample.\thesection}{#1}
]\relax%
}{%
\end{mdframed}%
}
显示的是“示例 5.1.5.1”。那么我该如何修改呢?