Here's a problem confused me for long time, the minimal executable code is listed below:
\documentclass[UTF8]{article}
\usepackage{amsmath}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
\begin{equation*}
A = B\cap C\footnotemark
\end{equation*}
\footnotetext{\lipsum[1]}
orem ipsum dolor sit amet, consectetuer adipiscing elit. Ut purus elit,vestibulum ut, placerat ac, adipiscing vitae, felis. Curabitur dictum gravidamauris. Nam arcu libero, nonummy eget, consectetuer id, vulputate a, magna.
\lipsum[1]
\end{document}
the generated result is:
look at the marked area by red color, I find that if I use \footnotetext{}, it would generate about half letter spacing at the beginning of the next line, whereas there's no spacing if I directly use \footnote{}. However, \footnote{} is only useful in equation or equation* environment. I've test for many times, I'm sure it's a spacing.
My question is How to remove the small spacing after \footnotetext{}?


%at the end of this line:\footnotetext{\lipsum[1]}%. Otherwise, you introduce a stray space. See https://tex.stackexchange.com/questions/7453/what-is-the-use-of-percent-signs-at-the-end-of-lines-why-is-my-macro-creat – Steven B. Segletes Apr 30 '21 at 20:34equation, as it adversely messes with the vertical spacing. – Steven B. Segletes Apr 30 '21 at 20:36\footnotetextisn't correct.) If only the extra space was the problem, that could likely be corrected by inserting a%sign at the end of the preceding line. – barbara beeton Apr 30 '21 at 20:38\lipsum[1]. Curious. – egreg Apr 30 '21 at 22:23