这个问题与关于在标题页上有摘要的帖子有关.我想重置给定部分的页码.
您还可以重置页码计数器:
\setcounter{page}{1}
但是,使用此技术,您会在左上角页码字段中的Acrobat中获得错误的页码:
\maketitle: 1 \tableofcontents: 2 \setcounter{page}{1} \section{Introduction}: 1 ...
我用
\pagenumbering{roman}
对于frontmatter中的所有内容然后切换到
\pagenumbering{arabic}
对于实际内容.使用pdftex,页面编号出现在PDF文件中.
要取消第一页上的页码,请\thispagestyle{empty}
在\maketitle
命令后添加.
然后,文档的第二页将编号为"2".如果您希望此页面编号为"1",则可以\pagenumbering{arabic}
在\clearpage
命令后添加,这将重置页码.
这是一个完整的最小例子:
\documentclass[notitlepage]{article} \title{My Report} \author{My Name} \begin{document} \maketitle \thispagestyle{empty} \begin{abstract} \ldots \end{abstract} \clearpage \pagenumbering{arabic} \section{First Section} \ldots \end{document}