页码从 2 开始

页码从 2 开始

在我的报告中,我有标题页、摘要页和目录。然后我到了第一章,我想从那里开始用阿拉伯语编号。但是在我的代码中,编号是从目录开始的,所以我在\thispagestyle{empty}目录和摘要之后使用了编号,现在它们没有编号,但第一章仍然从第 2 号开始,没有页码。我希望它从第 1 号开始。

这是代码。

\documentclass[12pt]{report}    
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{fancyhdr}
\usepackage{tikz}
\usetikzlibrary{decorations.text,calc}
\setlength\parskip{\baselineskip}
\parindent=0pt
\begin{document}
\title{Group Rings}
\author{Bhaskar Vashishth}
\date{\today}
\maketitle
\abstract
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\fancyhf{}
\fancyhead[R]{\thepage}
\pagenumbering{arabic}
\chapter{Introduction}
\section{Prelimanries}
 blah blah
\end{document}

答案1

\pagenumbering\thispagestyle相关的东西几乎总是需要\clearpage\cleardoublepage之前\pagenumbering

(为了简单起见,我省略了屏幕截图)

\documentclass[12pt]{report}    
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{fancyhdr}
\usepackage{tikz}
\usetikzlibrary{decorations.text,calc}
\setlength\parskip{\baselineskip}
\parindent=0pt
\begin{document}
\title{Group Rings}
\author{Bhaskar Vashishth}
\date{\today}
\maketitle
\abstract
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\cleardoublepage %%%% Add this one here!
\fancyhf{}
\fancyhead[R]{\thepage}
\pagenumbering{arabic}
\chapter{Introduction}
\section{Prelimanries}
 blah blah
\end{document}

相关内容