I want to know if there is a way to add an appendix item outside of the appendix.
For example:
Code: Select all
\mainmatter
\include{chapter1}
\appendix
\include{report-contents}
\include{chapter2}
...
Code: Select all
\mainmatter
\include{chapter1}
\appendix
\include{report-contents}
\include{chapter2}
...
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass{book}
\usepackage{appendix}
\begin{document}
\chapter{Regular Chapter}
\begin{appendices}
\chapter{Some Appendix}
The contents...
\end{appendices}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.