Is it possible to have an Appendix in the middle of a document? That would be extremely helpful in working on two volumes of a book together, like for example, what was used in the new edition of the LaTeX Companion, Parts I & II, 3rd edition.
I tried scooping the \appendix command as in:
\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}
to no avail.
