我如何从头开始计算页数

我如何从头开始计算页数

我写的论文是书籍类的,从正文第一页开始用阿拉伯数字页码,之前(目录,声明等)都是罗马数字,标题页也没有编号。

但是,我的大学要求不同的编号。编号应该从最开始开始,但标题页不应显示页码。你能告诉我如何设置吗?

\documentclass[12pt,a4paper,oneside]{book}

\title{Some Title}

\author{Name}
\usepackage[latin1]{inputenc}
\usepackage{amsmath,amsfonts,amssymb}

\usepackage{graphicx}
\usepackage{appendix}
\usepackage[table]{xcolor}
\usepackage{placeins}
\usepackage{setspace}
\usepackage{fancyhdr}
\usepackage{microtype}
\usepackage[nottoc]{tocbibind}
\usepackage{afterpage}
\usepackage{pdfpages} % This allows insertion of pdf files. 
\setcounter{section}{0}
\setlength{\evensidemargin}{0.46cm} 
\setlength{\parskip}{1em}  % Set the spacing between paragraphs

\renewcommand{\bibname}{References}

\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\renewcommand{\chaptermark}[1]{\markboth{Chapter \thechapter. #1}{}}
\fancyhead[RO]{\leftmark}
\fancyfoot[RO]{\thepage}
\fancyfoot[RE]{\thepage}
\newcommand{\HRule}{\rule{\linewidth}{2mm}}
\graphicspath{{pictures/}}
\date{August 2015}
\begin{document}
\include{chapter1}
\bibliograph{bib}
\end{document}

答案1

我做到了:1)我听取了 Touhami 的建议,删除了 frontmatter 和 mainmatter。

2) 将 \addtocounter{page}{1} 放在 \maketitle 后面。允许在标题页从 1 开始设置页码计数器。

3) 一开始我遇到一个问题,我的摘要变成了第 1 章。那是因为我使用了 \chapter 而不是 \chapter*。使用 \chapter* 会隐藏章节编号。

如果您有类似的问题,希望这会有所帮助。

相关内容