Possible Duplicate:
Change starting page number
Good day all! I have two external pdf files I want to include as appendix in my report. The first file has 5 pages and the second has 7 pages. In order to make sure that my table of content reflect the appendices, I have include two appendices (Appendix A and B) in my latex file.
\begin{appendices}
\chapter{\label{app:appena}}
\section{Experiment 1}
\chapter{\label{app:appenb}}
\section{Experiment 2}
\end{appendices}
Now the last page of my work (without the appendices) is 32. Going by my method, Appendix A appears as page 33 and Appendix B appear as page 34 in table of content. How can I make the page number counter to increase by 5 so Appendix A appears as 33 and Appendix B appears as 38. Thanks in anticipation.
\clearpage\addtocounter{page}{5}– David Carlisle Jan 27 '13 at 11:44