我需要像这张图片一样的页面标题

我需要像这张图片一样的页面标题

我需要以下特殊代码头:

enter image description here

答案1

在没有 MWE 的情况下,很难知道这个解决方案是否适合您。但是,这里有一个使用report文档类的建议。(不知道您实际使用的是哪个文档类)。它使用:

enter image description here

\documentclass{report}
\usepackage{blindtext} % For dummy text
\usepackage{fmtcount}  % Display the value of a counter
\usepackage{fancyhdr}  % For fancy headers

\pagestyle{fancy}
\lhead{Chapter \numberstringnum{\thechapter}}
\rhead{\leftmark}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}} 

\begin{document}

\chapter{Test}

\chapter{Test}

\chapter{Symmetrical components}
\blindtext[5]

\end{document}

相关内容