How to insert Conference name and Copyright into iEEE Latex Template
2 min readFeb 13, 2024
Date: 12/02/2024
1> Insert “fancyhdr” package at use package zone
\usepackage{fancyhdr}
2> Insert this code before tag \begin{document}
% This section is used to display on every page except the home page.
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{2024 International Electrical Engineering Congress (iEECON 2024)\\
\textit{March 6-8, 2024, Pattaya Chonburi, THAILAND}}
\renewcommand{\headrulewidth}{0pt} % Remove the horizontal line in header
% This section is used to display the home page.
\fancypagestyle{firstpage}{%
\fancyhf{}%
\fancyhead[L]{2024 International Electrical Engineering Congress (iEECON 2024)\newline
\textit{March 6-8, 2024, Pattaya Chonburi, THAILAND}}
\fancyfoot[L]{%
\normalsize{979-8-3503-8359-1/24/\$31.00 ~\copyright2024 IEEE}
}%
\renewcommand{\headrulewidth}{0pt} % Remove the horizontal line in header
}
3> Insert \thispagestyle{firstpage} after \maketitle
\thispagestyle{firstpage} % Apply fancy header on the first page
4> Output example
You will see that the conference name appears in the top left corner. and the copyright number already appears in the lower left corner of the paper.