[Tex/LaTex] Options for supplementary materials in preprint version: revTeX + arXiv

arxivjournal-publishingrevtex

There are more and more papers which accept supplementary materials, as e.g. the Physical Review Letters: see their policy regarding supplementary materials. For them you can submit two different documents, say main.tex and supp.tex. I believe that preprint servers will display only one final document. At least it seems so for arXiv, see their policy regarding LaTeX submission. Let stick ourself with RevTeX and arXiv examples for the present purpose. The problems are that main.tex and supp.tex usually do not use the same layout and co. : two columns vs. one column, different abstracts, different bibliographies, …

So I'm wondering about the best choice(s) for presenting our papers including supplementary materials on preprint servers. I'm well aware that it should depend on the nature of the supplementary materials (video, code, equations, …). Here let us suppose the supplementary materials are some pure LaTeX document.

What is the the best option: including extra documents (with the difficulty to have a clear distinction between the main part and the supplementary part, especially the preamble of supp.tex is not displayed anymore, see How to include a document into another document?), or to abuse of appendix (with the problem that appendix is not a supplementary material) ?

So, in short: How to combine my main.tex and my supp.tex into a global paper.tex file in a clever way ?

Best Answer

Here I give a workable solution, but not a clever one. In whatever case, we have to make a third separate file for arXiv submission (say, with at least one line to include Supp.) unless they support supplementary directly.

Basically, the method is to append the supplementary material at the end of main text. Then add the commands to reset all counters and append the "S" for equations, figures, table and references. The resulting file would look like

enter image description here

The \pagebreak will put supplementary materials in the new page, but I don't know why it doesn't work here. The template codes are given below. Note the important codes is in the middle part. Also, please don't use same reference citation name, otherwise, there will be wrong numbering for citation.

\documentclass[twocolumn,superscriptaddress,floatfix,preprintnumbers]{revtex4}
\usepackage{graphics,amssymb,amsmath,epsfig,color}
\usepackage{graphicx}

\begin{document}

\title{Title for main text}
\author{You name here}
\affiliation{Somewhere}
\date{\today}
\begin{abstract}
Abstract...
\end{abstract}
\pacs{}
\maketitle


Paragraph 1. Main text here \cite{RefA}:
\begin{equation}
  E=mc^2
\end{equation}

Paragraph 2.

Paragraph 3 \cite{RefB}:
\begin{equation}
  S=k_B \ln(\Omega)
\end{equation}


\begin{thebibliography}{11}
\bibitem{RefA} A. Someone, C. Someone, D. Someone, Phys. Rev. Lett. {\bf 11}, 1111 (1911).
\bibitem{RefB} B. Someone, {\it et. al.}, Phys. Rev. Lett. {\bf 22}, 2222 (1922).
\end{thebibliography}




%%%%%%%%%% Merge with supplemental materials %%%%%%%%%%
\pagebreak
\widetext
\begin{center}
\textbf{\large Supplemental Materials: Title for main text}
\end{center}
%%%%%%%%%% Merge with supplemental materials %%%%%%%%%%
%%%%%%%%%% Prefix a "S" to all equations, figures, tables and reset the counter %%%%%%%%%%
\setcounter{equation}{0}
\setcounter{figure}{0}
\setcounter{table}{0}
\setcounter{page}{1}
\makeatletter
\renewcommand{\theequation}{S\arabic{equation}}
\renewcommand{\thefigure}{S\arabic{figure}}
\renewcommand{\bibnumfmt}[1]{[S#1]}
\renewcommand{\citenumfont}[1]{S#1}
%%%%%%%%%% Prefix a "S" to all equations, figures, tables and reset the counter %%%%%%%%%%


\section{Section 1}
Copy and paste your Supplemental Materials text here \cite{S_RefA}, blah, blah, blah, blah, blah, blah, ...
\begin{equation}
  i\hbar\frac{\partial}{\partial t}\psi(x,t) = -\frac{\hbar^2}{2m}\frac{\partial^2}{\partial x^2}\psi(x,t) + V(x,t) \psi(x,t)
\end{equation}


\begin{thebibliography}{11}
\bibitem{S_RefA} A. Someone, C. Someone, D. Someone, Phys. Rev. Lett. {\bf 11}, 1111 (1911).
\end{thebibliography}


\end{document}