标题页后的页码问题

标题页后的页码问题

我正在写论文。问题是标题页后的页码。摘要上应该是页码 (ii)。而是页码 (i)。这是代码

\documentclass[oneside,12pt]{book}
\usepackage{graphicx}
\graphicspath{ {Images/} }
\usepackage{times}
\usepackage[left=1.5in,right=1in,vmargin=1in]{geometry}
\usepackage[pdftex,colorlinks]{hyperref}
\begin{document}
\frontmatter
\input{Chapters/titlepage}
\chapter{Abstract}
\input{Chapters/Abstract}
\chapter{Acknowledgements}
\input{Chapters/Acknowledgements}
\tableofcontents
\mainmatter
\chapter{Point to Point Comm}
\input{Chapters/chapter01}
\chapter{Massive}
\input{Chapters/chapter02}
\chapter{Conclusion}
\input{Chapters/chapter03}
\end{document}

相关内容