我的论文章节中的页码问题,如何制作没有页码的章节标题页?

我的论文章节中的页码问题,如何制作没有页码的章节标题页?

我正在写论文。我希望所有章节标题都放在单页中,并居中,第一节简介从新页开始,这样我的章节标题页也会有页码。我想让我的标题页没有页码,页码从简介继续。我的所有章节都一样。我正在使用这个

% Chapter 2
\begin{center}
\setstretch{2}
\chapter{chapter title here} % Write in your own chapter title
\label{Chapter2}
\lhead{Chapter 2. \emph{chapter title here}} % Write in your own chapter title to set the page header
\end{center}
\clearpage

\section{Introduction}

在本章中,我们

答案1

我尝试使用评论中写的命令并且成功了:

\documentclass[12pt]{report}
\usepackage{fancyhdr}
\usepackage{setspace}

\begin{document}

\setcounter{page}{34}
End of first chapter

\begin{center}
\setstretch{2}
\chapter{chapter title here} % Write in your own chapter title
\thispagestyle{empty} % Remove page number
\addtocounter{page}{-1} % Substract 1 from page number
\label{Chapter2}
\lhead{Chapter 2. \emph{chapter title here}} % Write in your own chapter title to set the page header
\end{center}
\clearpage
\section{Introduction}
In this chapter we have...

\end{document}

您可以在您的论文文件中使用此代码,看看它是否运行正常。

相关内容