特定頁面的 Latex Fancyhdr

特定頁面的 Latex Fancyhdr

我正在寫一份包含多個章節的報告。我希望每一章的名稱上方都有一個數字,該數字因章節而異。我在章節名稱上方顯示了一個圖形,但問題是該圖形將應用於該特定章節的每一頁。我希望該圖出現僅有的章節名稱上方。

我稍微修改了 Overleaf 網站上的一個範例:

\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

有用的評論導致了大衛卡萊爾在這裡找到的答案:

包括上面同一頁上的圖 \chapter

相關內容