\newpage
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\fancyhf{}%clearheaders
\fancyhead[R]{
\itshape
\leftmark}
\fancyfoot[C]{168}
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\fancyfoot[C]{\168}
}
\setlength{\headheight}{14.5pt}
\setlength{\headheight}{14.5pt}
答案1
你应该更具体地说明你可以/不能使用哪些类或包,并且请提供一个平均能量损失下次。
如果您使用该类book
,则无需添加任何额外的包来实现该效果。
\documentclass[a4paper]{book}
\usepackage{lipsum}
\begin{document}
\setcounter{page}{237}
\chapter{Introduction}\label{ch:intro}
\newpage
\lipsum[3]
\end{document}
但是,如果由于某种原因你不能使用书籍类,或者你必须使用特定的类。那么使用fancyhdr
:
\documentclass[a4paper]{report}
\usepackage{lipsum}
\usepackage{fancyhdr}
\pagestyle{headings}
\begin{document}
\setcounter{page}{237}
\chapter{Introduction}\label{ch:intro}
\newpage
\lipsum[3]
\end{document}