[Tex/LaTex] How to add a copyright notice footer to only the first page of a document

fancyhdrfootnotesheader-footer

I have a conference paper that requires me to enter a copyright notice to only the first page of the document.

I know that I can use fancyhdr to add this. I added the following to my document:

\usepackage{fancyhdr}
\lfoot{This is the copyright notice} %The footer needs to be left aligned

I have downloaded the fancyhdr style file and added it to the directory. But in the pdf output the footer does not show.

Also after I make it to work it needs to be on the first page only.

Edit: Full code below:

%% LyX 2.1.0 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[conference]{IEEEtran}
\usepackage[latin9]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{fancyhdr}
\lfoot{This is the copyright notice}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.

%% bare_conf.tex
%% V1.3
%% 2007/01/11
%% by Michael Shell
%% See:
%% http://www.michaelshell.org/
%% for current contact information.
%%
%% This is a skeleton file demonstrating the use of IEEEtran.cls
%% (requires IEEEtran.cls version 1.7 or later) with an IEEE conference paper.
%%
%% Support sites:
%% http://www.michaelshell.org/tex/ieeetran/
%% http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/
%% and
%% http://www.ieee.org/
% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}

\@ifundefined{showcaptionsetup}{}{%
 \PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother

\begin{document}
% paper title% can use linebreaks \\ within to get better formatting as desired
\title{Title here}

\begin{author}
\author{\author{\IEEEauthorblockN{FK\IEEEauthorrefmark{1}, A A\IEEEauthorrefmark{1}, F K\IEEEauthorrefmark{1},  Ri\IEEEauthorrefmark{1} and Sd\IEEEauthorrefmark{2}} \IEEEauthorblockA{\IEEEauthorrefmark{1}School of Computing, Engineering and Information Sciences, .\\ Email: \{**, **, **i, **\}@dept.comk \IEEEauthorblockA{\IEEEauthorrefmark{2}Department of Computer Science and Engineering, ***\\ Email: **@g.com}}}}
\end{author}
\maketitle
\author{\IEEEauthorblockN{FK\IEEEauthorrefmark{1}, AA\IEEEauthorrefmark{1}, FF\IEEEauthorrefmark{1},  Ri\IEEEauthorrefmark{1} and Sd\IEEEauthorrefmark{2}} \IEEEauthorblockA{\IEEEauthorrefmark{1}School of Computing, Engineering and Information Sciences**.\\ Email: \{**, **, **, **\}@*** \IEEEauthorblockA{\IEEEauthorrefmark{2}Department of Computer Science and Engineering, ***\\ Email: ***}}}
\begin{abstract}
Abstract here
\end{abstract}

\section{Introduction}
Introduction here

\section{Proposed Method}
Method explained here

\section{Conclusion}
Conclusion here

\bibliographystyle{IEEEtran}
\bibliography{SS_bibtex}


% that's all folks
\end{document}

Best Answer

The IEEEtran class uses a specific page style for the first page, so it's enough to modify it; loading fancyhdr is not the answer: the copy editors won't be happy with it.

\documentclass[conference]{IEEEtran}
\usepackage[latin9]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}


\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\def\ps@IEEEtitlepagestyle{%
  \def\@oddfoot{\mycopyrightnotice}%
  \def\@evenfoot{}%
}
\def\mycopyrightnotice{%
  {\footnotesize The copyright belongs to me!\hfill}% <--- Change here
  \gdef\mycopyrightnotice{}% just in case
}

%% bare_conf.tex
%% V1.3
%% 2007/01/11
%% by Michael Shell
%% See:
%% http://www.michaelshell.org/
%% for current contact information.
%%
%% This is a skeleton file demonstrating the use of IEEEtran.cls
%% (requires IEEEtran.cls version 1.7 or later) with an IEEE conference paper.
%%
%% Support sites:
%% http://www.michaelshell.org/tex/ieeetran/
%% http://www.ctan.org/tex-archive/macros/latex/contrib/IEEEtran/
%% and
%% http://www.ieee.org/
% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}

\@ifundefined{showcaptionsetup}{}{%
 \PassOptionsToPackage{caption=false}{subfig}}
\usepackage{subfig}
\makeatother

\begin{document}
% paper title% can use linebreaks \\ within to get better formatting as desired
\title{Title here}

\begin{author}
\author{\author{\IEEEauthorblockN{FK\IEEEauthorrefmark{1}, A A\IEEEauthorrefmark{1}, F K\IEEEauthorrefmark{1},  Ri\IEEEauthorrefmark{1} and Sd\IEEEauthorrefmark{2}} \IEEEauthorblockA{\IEEEauthorrefmark{1}School of Computing, Engineering and Information Sciences, .\\ Email: \{**, **, **i, **\}@dept.comk \IEEEauthorblockA{\IEEEauthorrefmark{2}Department of Computer Science and Engineering, ***\\ Email: **@g.com}}}}
\end{author}
\maketitle
\author{\IEEEauthorblockN{FK\IEEEauthorrefmark{1}, AA\IEEEauthorrefmark{1}, FF\IEEEauthorrefmark{1},  Ri\IEEEauthorrefmark{1} and Sd\IEEEauthorrefmark{2}} \IEEEauthorblockA{\IEEEauthorrefmark{1}School of Computing, Engineering and Information Sciences**.\\ Email: \{**, **, **, **\}@*** \IEEEauthorblockA{\IEEEauthorrefmark{2}Department of Computer Science and Engineering, ***\\ Email: ***}}}
\begin{abstract}
Abstract here
\end{abstract}

\section{Introduction}
Introduction here

\newpage

\section{Proposed Method}
Method explained here

\newpage

\section{Conclusion}
Conclusion here

\bibliographystyle{IEEEtran}
\bibliography{SS_bibtex}


% that's all folks
\end{document}

enter image description here