我需要幫助。我想顯示“範例 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”。那我該怎麼修改呢?