更改 Fancyhdr 上的标题

更改 Fancyhdr 上的标题

你好,我是 LaTeX 的新手,在使用包时遇到了问题,fancyhdr我希望标题只显示页面中心的章节编号和章节名称,但我遇到了问题,我使用的代码是

\rhead{}
\chead{}
\lhead{**XXXXX**}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

其中XXX应该更改为特定代码,我尝试使用,\thechapter . \chaptername希望它会显示类似“第 2 章理论背景”的内容,但它只显示数字,没有其他内容,我可能犯了语法错误,有人可以帮我吗?谢谢

答案1

我不确定这是否真的是 OP 想要的,但是章节标题包含在\leftmark(如果我没记错的话)

\documentclass[12pt,a4paper,twoside]{report}

\usepackage{fancyhdr}
\usepackage[head=1.5cm]{geometry}


\rhead{}
\chead{}
\lhead{\leftmark}
\cfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}


\usepackage{blindtext}

\pagestyle{fancy}



\begin{document}

\chapter{My first Chapter}
\blindtext[10]

\end{document}

相关内容