如何仅获取页眉左侧的“第 1 章。章节标题”

如何仅获取页眉左侧的“第 1 章。章节标题”

我正在尝试使用 fancyhdr,但无法让它不显示该部分并保留标题和“章节”的正常大小写。

我怎样才能将标题设为“第 1 章。章节标题”(所有页面左对齐)

答案1

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt} % optional
\fancyhead[L]{\nouppercase{\leftmark}}
\fancyhead[R]{\thepage}

答案2

标题安全包为设计页面样式包提供了一个非常好的替代方案fancyhdr;这里有一个小例子可以满足您的需要:

\documentclass{book}
\usepackage[pagestyles]{titlesec}
\usepackage{lipsum}% to generate filler text

\newpagestyle{mystyle}{%
  \headrule\sethead{\chaptername\ \thechapter. \chaptertitle}{}{}
  \setfoot{}{\thepage}{}}
\pagestyle{mystyle}

\begin{document}

\chapter{Test chapter}
\section{Test section}
\lipsum[1-40]

\end{document}

\headrule如果不需要标题下方的规则,请删除。

相关内容