Publishing IEEE pre-prints

If you have submitted or plan to submit your paper to an IEEE journal or conference, you might want to consider posting your pre-print in arXiv.org or TechRxiv.org, on your employer’s website or institutional repository and on your personal website. IEEE does not consider this to be a form of prior publication, see IEEE Post-Publication Policies. But what are the practical steps to do so? In this post we cover the mandatory steps you have to take in order to publish an IEEE article as a pre-print.

Why is this important?

In the fast-paced world of scientific research, the dissemination of knowledge is crucial for advancing our understanding of the world around us. Traditionally, the process of scientific publishing has been slow and rigid, often resulting in significant delays between the completion of research and its availability to the wider community. However, a groundbreaking development has been reshaping the landscape of academic publishing – the rise of pre-prints. Pre-prints are early versions of research papers made publicly available before formal peer review, offering researchers the opportunity to share their findings rapidly and to get early feedback. It has been shown that papers with pre-prints have a citation edge (Conroy, 2019; Xie et al., 2021), and that this effect is clear, immediate and long-lasting.

Consider this first

Before you continue, please consult the author information for the conference or journal that you will or have submitted to. After making sure that you are permitted to publish a pre-print, then you have to follow the rules with regards to the information that needs to be put on the first page, see IEEE Post-Publication Policies (Post-Publication Policies, 2023). But how exactly do you do that? As usual in LaTeX, there are about a million ways, here is one that I like. Make sure you compile at least twice (which you already probably already do).

See Putting IEEE copyright on a document title page, How to add copyright notice (in a box with borders) at bottom of first page? and IEEEtran conference with \maketitle - copyright notice (in a box with borders) at bottom of first page? for more information on the subject.

Example.
Example.

After submitting a paper

We have to add the text

This work has been submitted to the IEEE for possible publication. Copyright may be transferred without notice, after which this version may no longer be accessible.

1
2
3
4
5
6
7
8
9
10
\usepackage{tikz}

\newcommand\submittedtext{%
  \footnotesize This work has been submitted to the IEEE for possible publication. Copyright may be transferred without notice, after which this version may no longer be accessible.}

\newcommand\submittednotice{%
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=south,yshift=10pt] at (current page.south) {\fbox{\parbox{\dimexpr0.65\textwidth-\fboxsep-\fboxrule\relax}{\submittedtext}}};
\end{tikzpicture}%
}

After the paper is accepted and published

We have to add the text

© 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.

1
2
3
4
5
6
7
8
9
10
\usepackage{tikz}

\newcommand\copyrighttext{%
  \footnotesize \textcopyright \the\year{} IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, including reprinting/republishing this material for advertising or promotional purposes, collecting new collected works for resale or redistribution to servers or lists, or reuse of any copyrighted component of this work in other works.}

\newcommand\copyrightnotice{%
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=south,yshift=10pt] at (current page.south) {\fbox{\parbox{\dimexpr0.75\textwidth-\fboxsep-\fboxrule\relax}{\copyrighttext}}};
\end{tikzpicture}%
}

Finally

On the first page (for example after \maketitle, add \copyrightnotice or \submittednotice as needed.

In case we want the box to be red and be 2pt wide we can of course do that.

1
2
\renewcommand\fbox{\fcolorbox{red}{white}}
\setlength{\fboxrule}{2pt} % Set fbox rule width to 2pt

References

  1. Conroy, G. (2019). Preprints boost article citations and mentions. https://www.nature.com/nature-index/news/preprints-boost-article-citations-and-mentions
  2. Xie, B., Shen, Z., & Wang, K. (2021). Is preprint the future of science? A thirty year journey of online preprint services. CoRR, abs/2102.09066. https://arxiv.org/abs/2102.09066
  3. Post-Publication Policies. (2023). https://journals.ieeeauthorcenter.ieee.org/become-an-ieee-journal-author/publishing-ethics/guidelines-and-policies/post-publication-policies/

Suggested citation

If you would like to cite this work, here is a suggested citation in BibTeX format.

@misc{isaksson_2023,
  author="Isaksson, Martin",
  title={{Martin's blog --- Publishing IEEE pre-prints}},
  year=2023,
  url=https://blog.martisak.se/2023/07/26/ieee-pre-prints/,
  note = "[Online; accessed 2024-04-07]"
}

Revisions