Overleaf – arXiv Warning: User Included Plain Hyperref Directive Explained

arxivoverleafwarnings

I uploaded my .tex, .bib, and .bbl files from overleaf on arXiv. After processing the files the log shows the following warning:

[verbose]: ~~~~~~~~~~~ Processing file 'main.tex'
[verbose]: arXiv Warning: user included plain hyperref directive.
[verbose]: ~~~~~~~~~~~ Running hpdflatex for the first time ~~~~~~~~

The warning appears just before hpdflatex runs for the first time, so I have the impression that the actual file content is not the reason.

What does the warning mean? How do I get rid of it?

Minimal Working example that throws the warning is below. I get the warning no matter if \usepackage{hyperref} is activated or not.

\documentclass[reprint,amsmath,amssymb,aps,prapplied]{revtex4-2}
\usepackage{graphicx}
\usepackage{dcolumn}
\usepackage{bm}
%\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage{upgreek}
\usepackage{soul}
\usepackage{graphicx,color}
\usepackage{xcolor}

\begin{document}
\preprint{APS/123-QED}

\title{Article Title}
\author{Author1}
\email{author@email.com}
\affiliation{University}
\date{\today}
    \begin{abstract}
        Abstract
    \end{abstract}

    \maketitle
    
    \section{Introduction}
    This is a Test. And this is a citation~\cite{boyd2008nonlinear}.

    \bibliography{main}
\end{document}

Best Answer

Same, removing \usepackage{hyperref} not commenting it out!!

Related Question