[Tex/LaTex] Problem with copyright notice within ieeeconf template

ieeeconf

I'd just checked a great deal of related questions, corresponding to similar problems, such as here, here, here, here and so on; But all of them lead to below error:

Undefined Control Sequence \IEEEoverridecommandlockouts\IEEEpubid...

Here is the kernel of my template file' code:

\documentclass[letterpaper, 10 pt, conference]{ieeeconf}

\IEEEoverridecommandlockouts                              

\overrideIEEEmargins                                      

\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{amsmath} 
\usepackage[normalem]{ulem}
\usepackage[flushleft]{threeparttable}
%\usepackage{fancyhdr}

\title{\LARGE \bf
My Papr's Title
}

\author{Me$^{1}$ and Someone Else$^{2}$% <-this % stops a space
\thanks{$^{1}$My Affiliation
        {\tt\small my email address}}%
\thanks{$^{2}$Her Affiliation
        {\tt\small her email address}}%
}

\makeatletter
    \setlength\@fptop{0\p@}
\makeatother

\IEEEoverridecommandlockouts\IEEEpubid{\makebox[\columnwidth]{978-1-4799-4937-3/14/\$31.00~\copyright{}2014 IEEE \hfill} \hspace{\columnsep}\makebox[\columnwidth]{ }}

\begin{document}

%\IEEEpubid{\makebox[\columnwidth]{\hfill 9781-4244-3941-6/09/\$25.00~\copyright~2009 IEEE}
%\hspace{\columnsep}\makebox[\columnwidth]}

\maketitle


\begin{abstract}\end{abstract}

\section{INTRODUCTION}

\section*{Acknowledgment}

\begin{thebibliography}{99}

\bibitem{1}
V.~Braitenberg. \textit{Vehicles. Experiments in synthetic psychology}. The MIT Press, 1984.

\end{thebibliography}

\end{document}

Would you please guide me to insert the copyright notice, deservedly?

Best Answer

\IEEEoverridecommandlockouts is provided by IEEEtran.cls and not IEEEconf.cls. \overrideIEEEmargins is not supported in version 1.7+.

\bf ought not be used in LaTeX which deprecated it 20+ years ago. Be careful not to introduce spurious spaces in, for example, titles etc.

For example,

\documentclass[letterpaper,10pt,conference]{IEEEtran}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage[normalem]{ulem}
\usepackage[flushleft]{threeparttable}

\title{\LARGE \bfseries My Paper's Title}% \bf was deprecated 20+ years ago and ought not be used in LaTeX

\author{Me$^{1}$ and Someone Else$^{2}$% <-this % stops a space
\thanks{$^{1}$My Affiliation
        {\tt\small my email address}}%
\thanks{$^{2}$Her Affiliation
        {\tt\small her email address}}%
}

\makeatletter
    \setlength\@fptop{0\p@}
\makeatother

\begin{document}
\IEEEoverridecommandlockouts

% \overrideIEEEmargins is no longer supported
\IEEEpubid{\makebox[\columnwidth]{978-1-4799-4937-3/14/\$31.00~\copyright{}2014 IEEE \hfill} \hspace{\columnsep}\makebox[\columnwidth]{ }}

\maketitle

\begin{abstract}\end{abstract}

\section{INTRODUCTION}

\section*{Acknowledgment}

\begin{thebibliography}{99}

\bibitem{1}
V.~Braitenberg. \textit{Vehicles. Experiments in synthetic psychology}. The MIT Press, 1984.

\end{thebibliography}

\end{document}

compiles without error:

compiled version

Related Question