I will be providing you the steps to add header and footer in a paper with LaTex.
- Import Fancyhdr package
\usepackage{fancyhdr}
- 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.
- Now place the following code, write after
\maketitle
command\thispagestyle{firstpagestyle}