格式化图书类别显示样式

格式化图书类别显示样式

我最近决定将我的论文的类别从报告改为书籍。一个明显的区别是,在页面顶部,书籍类别的章节名称会显示出来。另一个明显的区别是,每隔一页,页码都会显示在页面的右上角,而不是页面底部。

我的目标是让章节名称消失,并让页码出现在每一页的底部。我该怎么做? 在此处输入图片描述

答案1

一种方法:使用包并首先fancyhdr踢出所有内容,然后启用底部页码,居中。然后使用。footers/headers\fancyhf{}\cfoot{\thepage}\pagestyle{fancy}

\documentclass[12pt]{book}

\usepackage{blindtext}
\usepackage{fancyhdr}



\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\cfoot{\thepage}


\begin{document}
\pagestyle{fancy}
\tableofcontents
\chapter{Introduction}

% Dummy stuff
\blinddocument
\end{document}

答案2

文档book类对所有页面使用headings页面样式,但包含章节标题的页面除外(这些页面使用plain页面样式)。如果我正确理解了您的要求,您希望所有页面使用plain页面样式。可以通过在文档的序言中添加以下指令来实现此目标:

\pagestyle{plain} 

答案3

该包scrlayer-scrpage还有另一种可能性:

\documentclass[12pt]{book}
\usepackage{blindtext}

\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\cfoot*{\pagemark}

\begin{document}
\tableofcontents
\chapter{Introduction}
\blinddocument
\end{document}

相关内容