Comment obtenir des notes de bas de page dans une formule mathématique?
Pour obtenir des notes de bas de page, vous pouvez utiliser :
- directement la commande
\footnote; - les commandes spécifiques
\footnotemarket\footnotetextsi vous voulez fixer vous-même les valeurs des compteurs. Ici,\footnotemarkpermet de placer dans le texte la référence à la note et\footnotetextpermet d'insérer le texte correspondant en bas de page :
\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}

![LaTeX
\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}](/lib/exe/fetch.php?media=wiki:latex:/imga4416932d607da27ffff3c2ae29c6ea1.png)
