我正在写一份包含多个章节的报告。我希望每个章节的名称上方都有一个图形,具体数字因章节而异。我有一个图形显示在章节名称上方,但问题是该图形将应用于该特定章节的每一页。我希望该图形显示仅有的章节名称上方。
我对 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
有用的评论导致了 David Carlisle 的回答,请见此处: