1

I want to remove the header, but I am not sure how to do this. I cannot remove the line in the header. This is the code I am using:

\usepackage{sectsty,fancyhdr}
\sectionfont{\LARGE\bfseries}% https://tex.stackexchange.com/q/59726/5764

\pagestyle{fancy} \fancyhf{} \lhead{Project tile} \renewcommand{\headrulewidth}{2.0pt} \renewcommand{\footrulewidth}{0.5pt} \rfoot{Page \thepage} \lfoot{\leftmark}

\makeatletter \renewcommand{\sectionmark}[1]{% \markboth{\ifnum \c@secnumdepth>\z@ \thesection\hskip 1em\relax \fi #1}{}} \makeatother

yo'
  • 51,322
Neri
  • 11

1 Answers1

1
\usepackage{sectsty,fancyhdr}
\sectionfont{\LARGE\bfseries}% https://tex.stackexchange.com/q/59726/5764

\pagestyle{fancy}
\fancyhf{}
\lhead{}%<-----------------------------------------change
\renewcommand{\headrulewidth}{0pt}%<---------------change
\renewcommand{\footrulewidth}{0.5pt} 
\rfoot{Page \thepage}
\lfoot{\leftmark}

\makeatletter
\renewcommand{\sectionmark}[1]{%
  \markboth{\ifnum \c@secnumdepth>\z@
      \thesection\hskip 1em\relax
    \fi #1}{}}
\makeatother
js bibra
  • 21,280