如何在不需要的页面中去除属于页眉的空间?

如何在不需要的页面中去除属于页眉的空间?

所以,我在课堂上写了一份文件article,我只需要在包含图像的第一页中添加一个页眉。这是我使用的代码:

\documentclass[a4paper]{article}
\usepackage[top=2cm,bottom=2cm,left=3cm,right=3cm]{geometry}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage{lipsum}

\fancyhead[L]{Left Text}
\fancyhead[R]{\includegraphics{image.jpg}}
\setlength{\headheight}{54pt}

\title{Document}
\author{Me}
\date{}

\begin{document}
\maketitle
\thispagestyle{fancy}

\lipsum[1-10]

\end{document}

相关内容