最初のページにヘッダーとフッターを配置し、すべてのページにフッターのみを配置する

最初のページにヘッダーとフッターを配置し、すべてのページにフッターのみを配置する

最初のページに派手なヘッダーとフッターを配置しようとしていますが、すべてのページにフッターを配置する方法がわかりません。ページ区切りを見つけてコマンドを挿入しようとしました\fancyhead{}が、最初のページを除いてヘッダーがすべて消えてしまいました。ただし、空白になっている残りのページのヘッダーの間隔を狭めたいです。何かアドバイスはありますか? よろしくお願いします。

私が使用しているコードは以下の通りです:

\usepackage{fancyhdr}

\pagestyle{fancy}

\newcommand{\Header}[3]{
\fancyhf{} % Clear header/footer
\renewcommand{\headrulewidth}{0pt} % Remove header rule
\fancyhead[C]{%
  \begin{tabular}{ @{} p{\textwidth} @{} }
    \textbf{\textsf{#1}}\hfill \textbf{\textsf{#2}} \\
    \hline
    \centering \textsf{\small{#3}}
  \end{tabular}}
\setlength{\headheight}{19pt}
\cfoot{\scriptsize \thepage}
\lfoot{\scriptsize \copyright 2019 Name}}

私の文書は次のとおりです:

\documentclass[11pt, a4paper, twoside]{article}
\usepackage[a4paper,top=2.5cm,bottom=2cm,left=2.54cm,right=2.54cm,marginparwidth=1.75cm]{geometry}
\usepackage[utf8]{inputenc}

\begin{document}
\Header{Class $-$ Study Guide}{21 February 2019}{Exam will be 10 short answer and 1 essay. We have to know theories, as well as the implications and problems with the theories.}

\thispagestyle{fancy}%%% Don't know about this%%%%

\section{Logical Positivists}

\lipsum

\clearpage
\fancyhead{}%%%%% only deleting header, not reducing spacing%%%%

\section{new stuff}

\lipsum

\end{document}

関連情報