É possível ter um Apêndice no meio de um documento? Isso seria extremamente útil ao trabalhar juntos em dois volumes de um livro, como por exemplo, o que foi usado na nova edição do LaTeX Companion, Partes I e II, 3ª edição.
Eu tentei pegar o comando \appendix como em:
\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}
para nenhum proveito.
Responder1
no book
comando \appendix
é muito simples, definido por:
\newcommand\appendix{\par
\setcounter{chapter}{0}%
\setcounter{section}{0}%
\gdef\@chapapp{\appendixname}%
\gdef\thechapter{\@Alph\c@chapter}}
então você não precisa de um grupo (já que as definições são todas globais), mas depois do seu apêndice
\makeatletter
\setcounter{chapter}{2}
\setcounter{section}{0}
\gdef\@chapapp{\chaptername}
\gdef\thechapter{\@arabic\c@chapter}
\makeatother
e capítulos serão restaurados
Responder2
Alguns gostam disso?
\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}