카운터에 관한 질문

카운터에 관한 질문

도움이 필요해요. "예제 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"을 보여줍니다. 그럼 어떻게 수정해야 할까요?

관련 정보