I want to upload an accepted IEEE paper to arxiv, hence I have to manually insert the Copyright notice on the title page. I have already found some questions (e.g., 1, 2 ) on how to put the IEEE copyright notice on a paper. While it is possible to put a copyright notice on the bottom of the title page with the linked answers, the heading is also miraculously changed from the “journal name” to “author names: paper title” (the second instead of the first argument of \markboth).
Example Code which produces the describe results:
%!TEX program = pdflatex
\documentclass[twoside]{IEEEtran}
\makeatletter
% uncomment the following part to see a changing header
%\def\ps@IEEEtitlepagestyle{%
% \def@oddfoot{\mycopyrightnotice}%
% \def@evenfoot{}%
%}
\def\mycopyrightnotice{%
\begin{minipage}{\textwidth}
\centering \scriptsize
Copyright~\copyright~20xx IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, including\reprinting/republishing this material for advertising or promotional purposes, creating new collective works, for resale or redistribution to servers or lists, or reuse of any copyrighted component of this work in other works by sending a request to pubs-permissions@ieee.org.
\end{minipage}
}
\makeatother
\begin{document}
\title{A Title}
\author{An Author}
\markboth{IEEE Transactions}%
{An Author: A Title}
\maketitle
\end{document}
oddfootworked for me. – Zulan Nov 30 '22 at 10:47