나는 여러 장으로 구성된 보고서를 작성하고 있습니다. 각 장의 이름 위에 그림이 있으면 좋겠습니다. 그림은 장에 따라 다릅니다. 장 이름 위에 표시할 그림을 얻었는데 문제는 이 그림이 특정 장의 모든 페이지에 적용된다는 것입니다. 피규어가 나왔으면 좋겠다오직챕터 이름 위에
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의 답변으로 이어졌습니다.