我正在使用报告文件进行论文写作。在每一章开始之前,我想使用中间的一页包含以下内容,没有页码,但页码应该在下一页继续。同样,对于每一章也是如此。
第一章 引言
答案1
一个选择是合并软件包fancyhdr
和titlesec
:
\documentclass{book}
\usepackage{lipsum,titlesec,fancyhdr}
% Redefine the plain page style, which is used for the chapter page
\fancypagestyle{plain}{%
\fancyhf{}%
\renewcommand{\headrulewidth}{0pt}% Line at the header invisible
\renewcommand{\footrulewidth}{0pt}% Line at the footer invisible
}
% use titlesec to adjust the chapter page layout and insert a \clearpage
\titleformat{\chapter}[display]% remove [display] to get everything on the same line
{\normalfont\Large\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Large}%
% change \Large to \LARGE or whatever you prefer
[\clearpage\ignorespaces]%
\begin{document}
\chapter{Another day in paradise}
\lipsum[1-2]
\end{document}