문서 중간에 부록을 넣을 수 있나요? 예를 들어 LaTeX Companion, Parts I & II, 3판의 새 판에 사용된 것과 같이 두 권의 책을 함께 작업하는 데 매우 도움이 될 것입니다.
다음과 같이 \appendix 명령을 추출해 보았습니다.
\documentclass{book}
\begin{document}
\chapter{The first chapter}
\chapter{The second chapter}
{
\appendix
\chapter{The first Appendix}
\chapter{The second Appendix}
}
\chapter{The third chapter}
\chapter{The fourth chapter}
\end{document}
소용이 없습니다.
답변1
book
명령 은 \appendix
다음과 같이 정의되어 매우 간단합니다.
\newcommand\appendix{\par
\setcounter{chapter}{0}%
\setcounter{section}{0}%
\gdef\@chapapp{\appendixname}%
\gdef\thechapter{\@Alph\c@chapter}}
따라서 그룹이 필요하지 않지만(정의는 모두 전역이므로) 부록 후에는
\makeatletter
\setcounter{chapter}{2}
\setcounter{section}{0}
\gdef\@chapapp{\chaptername}
\gdef\thechapter{\@arabic\c@chapter}
\makeatother
챕터가 복원됩니다
답변2
일부는 이런가요?
\documentclass{book}
\usepackage{appendix}
\begin{document}
\tableofcontents
\part{Volume}
\chapter{bla} bla ...
\chapter{bla} bla ...
\begin{appendices}
\chapter{bla} bla ...
\chapter{bla} bla ...
\end{appendices}
\part{Volume}
\chapter{bla} bla ...
\chapter{bla} bla ...
\begin{appendices}
\chapter{bla} bla ...
\chapter{bla} bla ...
\end{appendices}
\end{document}