我如何获取标题章节和特定页码乳胶?

我如何获取标题章节和特定页码乳胶?
\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}

相关内容