and starting from iv? Also, the numbers of main matter starts from 2 with the first page having no number; why's that?
Thanks so much. The following is the sample code.
Code: Select all
\documentclass[12pt,oneside]{book}
...
\pagestyle{fancy}
\fancypagestyle{plain}%
\fancyhf{}%
\fancyfoot[C]{\bfseries\thepage}
...
...
\begin{document}
\frontmatter
\setcounter{page}{1}
\include{title}
\include{approval}
\fancyhf{}
\fancyfoot[C]{\bfseries\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\include{biography}
\include{dedication}
\include{acknowledgment}
\setlength{\cftbeforetoctitleskip}{-23pt}
\renewcommand{\cftchapfont}{\normalsize}
\renewcommand{\cftchappagefont}{\normalsize}
\clearpage
%\singlespacing
\begin{doublespace}
%\doublespacing
\pagestyle{plain}%
\tableofcontents
\end{doublespace}
\cftsetindents{tab}{0em}{1.5em}
\setlength{\cftbeforelottitleskip}{-15pt}
\setlength{\cftafterlottitleskip}{35pt}
\setlength{\cfttabnumwidth}{1cm}
\setlength{\cftbeforetabskip}{1.7ex}%
\clearpage%
\pagestyle{plain}%
\listoftables
\cftsetindents{fig}{0em}{1.5em}
\setlength{\cftbeforeloftitleskip}{-15pt}
\setlength{\cftafterloftitleskip}{35pt}
\setlength{\cftfignumwidth}{1cm}
\setlength{\cftbeforefigskip}{1.7ex}
\clearpage
\pagestyle{plain}%
\listoffigures
\mainmatter
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\fancyhf{}
\fancyhead[R]{\bfseries\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\input{chapter1}
...
...