I've notice that revtex4-2 documentclass with nofootinbib option sometimes breaks the alignment of equations. Why does it do it? Am I doing something wrong? Is there a method to avoid that behavior?
Here is an example:
\documentclass[twocolumn,nofootinbib]{revtex4-2}
\usepackage{lipsum}
\begin{document}
\lipsum[][1-40]
A column break is somewhere here. \lipsum[][43-67]%
\footnote{The number in the equation below is misaligned.
Without this (a bit verbose) three-line sentence the
footnote would be a bit shorter and the issue observed
above with misaligned formula would disappear.}
\begin{equation}
1=1
\end{equation}
\lipsum[][71-90]
\begin{equation}
2=2
\end{equation}
\end{document}
Note 1: the revtex version used in the above example is revtex4-2 2020/10/03 4.2e, the one used in Overleaf as of January 23, 2023.
Note 2: a similar question RevTeX strange behaviour had a single-line align, which is not an issue here.

equationenvironment it seems to be tied to the lack of space between the\lipsumand\footnotemacros, but using\[ 1=1 \]instead the lack of indentation persists with space. Does your actual use-case have the footnote following a macro or plain text? – Dai Bowen Jan 24 '23 at 15:04In the actual use case the corresponding part of the tex is
– fiktor Jan 24 '23 at 18:35... becomes\footnote{...}followed by an equation.equationenvironment is interrupted and not fixed. This could well mean it is the same underlying issue as https://tex.stackexchange.com/q/188698 – Dai Bowen Mar 05 '23 at 17:26