页码重置为 1

页码重置为 1

我正在使用报告类来编写文档。我需要在摘要前添加声明。当我设置时,\thispagestyle{plain}它会将计数器重置为 1。我如何才能让页码继续?

\documentclass{report}
\usepackage{lipsum}
\usepackage{titlesec,ragged2e}
\usepackage{anyfontsize}
\usepackage{fontspec}
\usepackage[showframe]{geometry}
\geometry{left=1.5in,right=1in,top=1in,bottom=1.5in}
\title{foo}
\author{choo}

\begin{document}
\maketitle
\pagenumbering{roman}
\newpage
\addcontentsline{toc}{chapter}{DEC}
\centering CHOGEGNAP\\
\justifying
\lipsum[5]
\addcontentsline{toc}{chapter}{Abstract}
\begin{abstract}
    \thispagestyle{plain}
    \lipsum[5]
\end{abstract}
\tableofcontents
\end{document}

答案1

这似乎有效。

\documentclass{report}
\usepackage{lipsum}
\usepackage{titlesec,ragged2e}
\usepackage{anyfontsize}
\usepackage{fontspec}
\usepackage{geometry}
\geometry{left=1.5in,right=1in,top=1in,bottom=1.5in}
\title{foo}
\author{choo}

\begin{document}
\maketitle
\pagenumbering{roman}
\newpage
\addcontentsline{toc}{chapter}{DEC}
\centering CHOGEGNAP\\
\justifying
\lipsum[5]
\newpage
\addcontentsline{toc}{chapter}{Abstract}
\begin{abstract}
    \setcounter{page}{2}
    \thispagestyle{plain}
    \lipsum[5]
\end{abstract}
\newpage
\tableofcontents
\end{document}

相关内容