How can I have the following "footnote layout"?
Some Text Some Text Some Text Some Text² Some Text
2 FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT
FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT FOOTNOTETEXT
My problem is that the footnote text starting with the second line is too far left.
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\blindtext\footnote{\blindtext}
\end{document}


\deffootnoteis the paragraph indent for the footnote text. Did you choose10ptfor this on purpose? The default in thearticleclass seems to be8.5pt– cgnieder Aug 06 '13 at 09:42\usepackage[hang]{footmisc}did not work, but I found out that there is an incompatibility with Babel-french (\usepackage[french]{babel}), because it redefines the footnote number mark. I had to add\frenchsetup{FrenchFootnotes=false}. – PlasmaBinturong Mar 06 '24 at 20:24