Submitting to arXiv with Springer style

While I think there is no problem in publishing the paper on the arXiv with the box (I've done it and I've seen it a lot of times), the simplest way would be to redefine

\def\makeheadbox{\relax}

in the preamble. This eliminates the box but leaves the thick horizontal line below it. If you want to eliminate that too, then you must redefine \@maketitle (lines 546-629 in svjour3.cls). To be completely honest I don't think it's worth the time. You could of course adapt your code to article or revtex, but depending on how the paper is written this can become time consuming.


I think it is better not to remove the contents of \makeheadbox.

According to Springer's self-archiving policy you need to acknowledge the publisher before uploading your manuscript somewhere (personal website or arXiv). They treat pre-prints and author's accepted manuscripts (AAMs) differently. If it is AAM, in addition to the acknowledgement, there is also an Embargo Period (currently 12 months) - which means, you can put the accepted version on arXive only after 12 months, but this does not apply to your own self-maintained website. (Read the policy, it is short and clear in contrast to IEEE policy). The acknowledgement they require for AAMs goes like this:

This is a post-peer-review, pre-copyedit version of an article published in [insert journal title]. The final authenticated version is available online at: http://dx.doi.org/[insert DOI]

Therefore I put this acknowledgement in the aforementioned \makeheadbox. Unfortunately, this thing usually does not fit into the header of their svjour3.cls template, so I slightly changed the wording. You can use the following code based on campa's great answer and svjour3.cls definition of the \makeheadbox:

\def\makeheadbox{{%
\hbox to0pt{\vbox{\baselineskip=10dd\hrule\hbox
to\hsize{\vrule\kern3pt\vbox{\kern3pt
\hbox{\bfseries [Insert journal name here]}
\hbox{This is a post-peer-review, pre-copyedit version of this article.}
\hbox{The final authenticated version is available online at: \href{[Insert doi here]}{[Insert doi here]}.}
\kern3pt}\hfil\kern3pt\vrule}\hrule}%
\hss}}}

The result looks like this: Acknowledgement to Springer in \makeheadbox

Good thing about this method is that you use it in your .tex file (e.g. just above the \begin{document}) and do not need alter the class files, which is strongly discouraged.