dginev / ar5iv

A web service offering HTML5 articles from arXiv.org as converted with latexml
https://ar5iv.org
MIT License
784 stars 20 forks source link

Improve article 2105.04649 #357

Open dginev opened 1 year ago

dginev commented 1 year ago

Exact location of issue

At bibliography

Problem details

Curiously we hit a runtime limit in digesting the .bbl data of this article. This could either be an infinite loop, or a sign our limits need to be raised - could be a curious latexml debugging session.

dginev commented 1 year ago

The infinite loop can be isolated in the following minimal snippet:

\documentclass{article}
\usepackage{hyperref}
\usepackage[numbers]{natbib}

\begin{document}

\begin{thebibliography}{1}
\bibitem[\href{https://example.com}{example}]{key}
\end{thebibliography}

\end{document}