[Tex/LaTex] Layout of multiple lines footnotes

footnotesindentation

I have a question about footnotes with LaTeX:

I would like the multi-lines footnotes to look like:

1 This is the first line of the very, very long footnote
     and this is the second line of the very long footnote
     and this is the third line of the very long footnote.

How can I accomplish this? I already checked out package footmisc but could not find working options.

Best Answer

With the following code in the preamble one can use the normal \footnote command:

\makeatletter
\renewcommand\@makefntext[1]{\leftskip=2em\hskip-2em\@makefnmark#1}
\makeatother

The footnote number will be flush with the left margin.