[Tex/LaTex] How to avoid overflow using \IEEEpubid on the first column

ieeetrantwo-column

I am trying to write a journal paper using the IEEEtran.cls template.

My problem is that the Publication ID Mark overflows into my thanks section.

This is the bottom of the title page:

enter image description here

From the documentation of IEEEtran.cls we see that:

enter image description here

I included the command \IEEEpubidadjcol into the second column. This prevents the overflow in the second column as you can see in my previous image, but lets the first column run freely.

I tried including \IEEEpubidadjcol into the first column aswell, but that causes compilation errors.

Please, could you give me some hint on how to solve this problem without doing something illegal with respect to the IEEE modus operandi?

EDIT:

As the answer suggests, the problem can be solved using the \IEEEpubidadjcol command twice. When I tried this, I got an error:

Infinite glue shrinkage found in box being split

In spite of this error a correct pdf is produced. The error goes away when I do not include packages fixltx2e and dblfloatfix.

Best Answer

Contrary to what the documentation says, it seems that \IEEEpubidadjcol has to be issued also in the first column.

\documentclass[journal, a4paper]{IEEEtran}

\usepackage{lipsum} % for mock text

\title{Lorem ipsum dolor sit amet, consectetur adipiscing elit}

\author{Martin Drozdik%
  \thanks{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eleifend
    orci eros, ac volutpat mauris molestie at. Sed auctor, diam eu tempor blandit}%
  \thanks{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam eleifend
    orci eros, ac volutpat mauris molestie at. Sed auctor, diam eu tempor blandit}%
}

\markboth{IEEE Transactions on Evolutionary Computation}{}


\begin{document}

\maketitle

\IEEEpubid{0000--0000/00\$00.00 \copyright\ 2013 IEEE}

\lipsum[1-2]

\IEEEpubidadjcol

\lipsum[3-7]

\IEEEpubidadjcol

\lipsum[8-12]

\end{document}

enter image description here