부록 B의 숫자 문제

부록 B의 숫자 문제

다음 링크에서 이전 요청을 참조하십시오.

Legrand Orange Book의 부록 \part를 아라비아 숫자 대신 알파벳 문자로 대체합니다.

부록 A와 동일한 구조인 부록 B를 얻는 방법에 대한 해결책을 찾을 수 없습니다.

\appendix
\part{\textcolor{SandyBrown}{\textsc{Appendice}}}
\chapterimage{chapter_head_10.pdf} % Chapter heading image
\chapter{Richiami di formalismo vettoriale}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\thechapter}{\Alph{chapter}}
\setcounter{chapter}{1}
\renewcommand{\thepart}{\arabic{part}}%part numbering in arabic

정확하게는 부록 B에 해당

\renewcommand\thepart{\Alph{part}}
\part{\textcolor{SandyBrown}{\textsc{Appendice}}}
\chapterimage{chapter_head_10.pdf} % Chapter heading image
\chapter{Titolo per l'appendice B}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\thechapter}{\Alph{chapter}}
\setcounter{chapter}{0}

번호 B.1, B.1.1이 없습니다. 등.

여기에 이미지 설명을 입력하세요

이미지에서 볼 수 있듯이 부록 B의 번호 매기기에는 번호 앞의 문자 B가 누락되어 있습니다.

문제를 어떻게 해결하거나 고칠 수 있나요?

편집 1: 다음 댓글이 이제 삭제되었습니다. 결과는 다음과 같습니다.

여기에 이미지 설명을 입력하세요

답변1

코드의 설정으로

\appendix
\part{\textcolor{SandyBrown}{\textsc{Appendice}}}
\chapterimage{chapter_head_10.pdf} % Chapter heading image
\chapter{Richiami di formalismo vettoriale}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\thechapter}{\Alph{chapter}}
\setcounter{chapter}{1}
\renewcommand{\thepart}{\arabic{part}}%part numbering in arabic

두 번째 부록 B를 추가하면 필요한 대부분의 작업이 완료됩니다. 따라서 부록 B에는 다음 코드만 필요합니다.

\renewcommand\thepart{\Alph{part}}
\part{\textcolor{SandyBrown}{\textsc{Appendice}}}
\chapterimage{chapter_head_10.pdf} % Chapter heading image
\chapter{Titolo per l'appendice B}

일반적으로 줄은 \renewcommand\thepart{\Alph{part}}필요하지 않지만, 사용된 템플릿은 모르겠습니다. 사용된 템플릿이 이전에 어딘가에서 재정의된 것 같습니다.

관련 정보