[Tex/LaTex] How to put header only in the first page and keep the rest without it? I don’t want a cover. With the code below, the header appears on every page

fancyhdrheader-footer

\documentclass{article}
\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhf{}
\cfoot{\thepage}

\lhead{\includegraphics[width=0.15\textwidth]{images/image.eps}}
\rhead{
text\\
text\\
text\\
text}

\title{\vspace{-1cm} \centering TITLE}
\author{AUTHOR}
\date{\today}

\begin{document}

\setlength{\headheight}{80pt}
\maketitle
\thispagestyle{fancy}

\end{document}

Best Answer

You could use one style for the document and an other one just for the first page :

\documentclass{article}
\usepackage{fancyhdr}

\pagestyle{empty}
\fancyhf{}
\cfoot{\thepage}

\lhead{COUCOU}
\rhead{
text\\
text\\
text\\
text}

\title{\vspace{-1cm} \centering TITLE}
\author{AUTHOR}
\date{\today}



\begin{document}

\setlength{\headheight}{80pt}
\maketitle
\thispagestyle{fancy}

blabla
\newpage
blabla
\newpage
\newpage
blabla
\newpage
\newpage
blabla
\newpage
\end{document}

enter image description here

Related Question