Comment obtenir des notes de bas de page dans une formule mathématique?

Pour obtenir des notes de bas de page, vous pouvez utiliser :

\documentclass{article}
\usepackage[french]{babel}
\begin{document}
\[
\textrm{Capacité} =
P_l\footnotemark[1] +
P_o\footnotemark[2] +
P_d\footnotemark[3]
\]
 
\footnotetext[1]{La place% 
    libre\dots}
\footnotetext[2]{La place%
    occupée\dots}
\footnotetext[3]{La place%
    défaillante\dots}
\end{document}

\documentclass{article}
\usepackage[width=5cm,height=5cm]{geometry}
\usepackage[french]{babel}
\pagestyle{empty}
\begin{document}
\[
\textrm{Capacité} =
P_l\footnotemark[1] +
P_o\footnotemark[2] +
P_d\footnotemark[3]
\]

\footnotetext[1]{La place libre\dots}
\footnotetext[2]{La place occupée\dots}
\footnotetext[3]{La place défaillante\dots}
\end{document}