loading...

19 November 2023
Conference Name and Copyright in Header Footer Guide for LaTex

I will be providing you the steps to add header and footer in a paper with LaTex.

  1. Import Fancyhdr package
\usepackage{fancyhdr}
  1. Add the following code before, \def\BibTeX
\fancypagestyle{firstpagestyle}{
    \fancyhf{}
    \fancyhead[L]{
    \text{2023 26th International Conference on Computer and Information Technology (ICCIT)}\\
    \text{13-15 December, Cox’s Bazar, Bangladesh}
    }
    \fancyfoot[L]{
    \text{979-8-3503-5901-5/23/\$31.00 ©2023 IEEE}
    } 
    \renewcommand{\headrulewidth}{0pt} % Removes header line
}

Make sure to replace the texts as you want to.

  1. Now place the following code, write after \maketitle command
    \thispagestyle{firstpagestyle}