In revtex4-1 onecolumn, I find the extra-long blanks (sentence breaks) before/after eqnarray, like this
question: How to remove the extra long blanks before/after eqnarray?
\documentclass[11pt, notitlepage, nofootinbib, onecolumn,preprintnumbers,amsmath,amssymb,prr,superscriptaddress,noshowpacs]{revtex4-1}
\begin{document}
Here here here:
\begin{eqnarray}
1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,
\end{eqnarray}
There there there:
\begin{eqnarray}
1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,
\end{eqnarray}
\end{document}
One stupid way I can do is this:
\documentclass[11pt, notitlepage, nofootinbib, onecolumn,preprintnumbers,amsmath,amssymb,prr,superscriptaddress,noshowpacs]{revtex4-1}
\begin{document}
Here here here:
\begin{eqnarray}\\[-14mm]
1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,
\end{eqnarray}
There there there:
\begin{eqnarray}\\[-14mm]
1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,
\end{eqnarray}
\end{document}
which gives (this is more or less the normal line break width that I wish to have)

But this is pretty inefficient and bad looking. Comments? Thanks!

showpacsandnoshowpacsas document class options? – Mico Feb 20 '20 at 08:27revtex4-1class uses the standard value for\abovedisplayskip. My opinions about this are: (1) the default value is a bit too large; (2) your expected output is typographically poor. Some other points: nobody should be usingeqnarraynowadays; therevtex4-2class has been available for a few months. – egreg Feb 20 '20 at 09:09eqnarrayoralign. You simply have a large line spacing. You can use the class optiontightenlinesto reduce it. Note also thatprris not a valid option. – campa Feb 21 '20 at 10:05