A follow-up question about Footnote in math mode. When using \footnotemark within the align environment at the end of the page, the footnote appears on the next page. Here's a minimal example. How do I get the footnote to appear on the same page as the footnote mark?
\documentclass[12pt, a4paper]{article}
\usepackage{geometry}
\usepackage{amsmath}
\begin{document}
Title.
\vspace{19cm}
\begin{align}
1.\footnotemark
\end{align}
\footnotetext{Footnote.}
\end{document}



