章节标题代替页眉中的章节标记

章节标题代替页眉中的章节标记

我正在寻找一个包含标题的页面

章节 章节编号 -------------------------章节标题

奇数页和偶数页均适用。

有什么提示吗?有人能解释一下分区标记如何在标题中显示吗?以及如何更改右侧标记?谢谢

答案1

这很容易标题安全. 请参阅下面的代码以了解基本结构。

\documentclass[11pt,a4paper,twoside,english]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=3cm]{geometry}
\usepackage[pagestyles,raggedright]{titlesec}
\usepackage{blindtext}

\newpagestyle{main}{%
  \headrule
  \sethead[\chaptername\ \thechapter][][\chaptertitle]{\chaptername\ \thechapter}{}{\chaptertitle}
  \setfoot[\thepage][][]{}{}{\thepage}
}
\pagestyle{main}

\begin{document}
    \Blinddocument
\end{document}

与往常一样,盲文该包仅用于创建虚拟文本,因此不是解决方案的一部分。

相关内容