特定のページ用の Latex Fancyhdr

特定のページ用の Latex Fancyhdr

私はいくつかの章からなるレポートを書いています。各章の名前の上に、章ごとに異なる数字を表示したいです。章名の上に数字を表示したいのですが、問題は、数字がこの特定の章のすべてのページに適用されてしまうことです。数字を表示したいのですがのみ章名の上に。

Overleaf の Web サイトの例を少し変更しました。

\documentclass[11pt,a4paper]{report}

\usepackage{lipsum}
\usepackage{graphicx}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\setlength\headheight{80.0pt}
\addtolength{\textheight}{-80.0pt}
\chead{\includegraphics[width=\textwidth]{figure1.png}}

\begin{document}
\title{Title here} 
\date{September 2013}
\author{Jesper Jensen}
\maketitle

\chapter{First Chapter Title}
\thispagestyle{fancy}
\lipsum[1-12]

\chapter{Second Chapter Title}
\fancyhead{}
\chead{\includegraphics[width=\textwidth]{figure2.png}}
\thispagestyle{fancy}
\lipsum[1-12]

\end{document}

答え1

役に立つコメントから、David Carlisle による回答がここに見つかりました:

同じページの上の章に図を含める

関連情報