答案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}