This is my first post and I am very new to Latex. I have been messing around with it for a few days and I am now trying to use Fancyhd package to customize my footer.
My code is the following:
\fancypagestyle{main}{
\lhead{}
\chead{}
\rhead{\bfseries \CompanyName}
\lfoot{
\footnotesize{ }
}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
}
This issue is that while i get the wanted result, the page numbering is displayed twice, once where the code has requested it and a second time in the center of the footer.
How do I display ONLY the page number I requested?
Thanks!