页面样式:添加章节编号和名称

页面样式:添加章节编号和名称

我怎样才能在我的论文的每一页上获得这个内容?

在此处输入图片描述

答案1

我建议使用fancyhdr。接下来提供的代码将允许您在标题中包含所需的文本。

\documentclass{book}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{fancy}

\renewcommand{\chaptermark}[1]{\markboth{\textit{\chaptername \ \thechapter. #1}}{}}
\fancyhead[LE,RO]{\thepage}
 \fancyfoot[C]{} 
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\begin{document}
\chapter[The hotel recommendation problem]{The hotel recommendation problem}
\lipsum[1-2]
\lipsum[1-2]
\lipsum[1-2]
\lipsum[1-2]
\lipsum[1-2]
\end{document}

我假设你正在使用bookdocument 类。编译上述代码将导致 章节描述 在此处输入图片描述 在此处输入图片描述

相关内容