[Tex/LaTex] arXiv messing up bibliography

arxivbibliographiesbibtexpdftex

I'm having a little trouble with a submission to arXiv and I don't know if people here can help diagnose it. Simply put, the arXiv tex compiler is screwing up the bibliography for reasons I don't understand.

In the paper.bbl file for paper.tex, you have entries such as:

\bibitem[\protect\citename{Mitchell and Lapata}2008]{mitchell2008vector}
J.~Mitchell and M.~Lapata.
\newblock 2008.
\newblock {Vector-based models of semantic composition}. 
\newblock In {\em Proceedings of ACL}, volume~8.

When I compile the paper with pdflatex, I obtain bibliography items such as:

Citations in local version

However, when I upload the tex to arxiv (along with all the accompanying files, and with the macro \pdfoutput=1 at the top of the tex document) I get the following output for the same bibliography item.

Citations on arXiv

As you can see, it's adding the information from the bibitem option into the references themselves. Does anyone have any idea how I can get arXiv's pdflatex to stop doing this? Am I doing something wrong on my end, or should I contact arXiv and tell them something is broken on their end?

If it helps. here's the tex log generated by arxiv: http://pastebin.com/uCFBzuiH

Thanks in advance for any help you can provide!

Edit: Answer to this problem provided by Lev Bishop in the comments below. Just make a file 00README.XXX with the line nohypertex in it.

Best Answer

Make a file 00README.XXX with the line nohypertex in it. The uses of the 00README.XXX file are described in the arXiv help.

By default arXiv processes files with HyperTeX (something like automatically adding \usepackage[implicit]{hyperref}), which can occasionally conflict with certain classes and styles, as appears to be the case here.

Related Question