如何开始页码,第一部分出现在LaTex中?

时间:2009-02-01 19:05:41

标签: latex

此问题与the post有关在标题页上有摘要有关。 我想重置给定部分的页码。

3 个答案:

答案 0 :(得分:59)

您还可以重置页码计数器:

\setcounter{page}{1}

但是,使用此技术,您会在左上角页码字段中的Acrobat中获得错误的页码:

\maketitle: 1
\tableofcontents: 2
\setcounter{page}{1}
\section{Introduction}: 1
...

答案 1 :(得分:47)

我用

\pagenumbering{roman}

对于frontmatter中的所有内容,然后切换到

\pagenumbering{arabic}

表示实际内容。使用pdftex时,页面编号就会出现在PDF文件中。

答案 2 :(得分:33)

要取消第一页上的页码,请在\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}