How do I solve this problem?
When my table of contents takes more than one page, the second page is labeled as page 1. Then my chapter 1 starts on page 2 instead of page 1. Below I give the skeleton of my .tex file.
\documentclass[11pt,a4paper,twoside,openany]{book}
\begin{document}
\frontmatter
\pagenumbering{roman}
\begin{titlepage}
...
\end{titlepage}
\chapter{Abstract}
...
\chapter{Preface}
...
\mainmatter
\pdfbookmark{Contents}{table}
\tableofcontents
\pagenumbering{arabic}
\chapter{Introduction}
....
\chapter{Two}
...
\backmatter
\chapter{Appendix}
\label{chapter:appendix}
\ldots
\end{document}
Any help?
