[Tex/LaTex] Indentation in footnote

footnotesindentationspacing

I have a small Problem with indentation in LaTeX footnotes:

   \documentclass[draft,12pt,a4paper]{article}
   \usepackage[footnote,printonlyused]{acronym}
   \begin{document}
   foo\footnote{foo: this footnotetext explaines what foo is}
   bar\footnote{bar: this very very very very very very very long text explains in  two lines what bar is, it would be nice if this line is indented behind the colon, starting below the 'this'}
   \end{document}

As you can see in the example, I repeat the word that has the footnote attached in the footnote again, everything works fine so far. But if I have too much text in the footnote, so that it spawns over more than one line in the footnotes, it looks 'wrong': the text in the second line starts at the beginning of the line, not as it should be below the first letter after the colon and the following space. How can I adjust the space in front of the second line, so that the text starts more towards the middle of the page?

example as is at the moment:

     foo¹
     bar²
     -----------
     ¹ foo: this footnotetext explaines what foo is
     ² bar: this very very very very very very very long text explains in  two lines what bar
     is, it would be nice if this line is indented behind the colon, starting below the 'this'

example as it should look:

     foo¹
     bar²
     -----------
     ¹ foo: this footnotetext explaines what foo is
     ² bar: this very very very very very very very long text explains in  two lines what bar
            is, it would be nice if this line is indented behind the colon, starting below 
            the 'this'

Best Answer

Maybe this help. Here. This is the complete definition of the command.

\deffootnote[<width of mark>]
{<indent of footnote text>}
{<paragraph indent in the footnote text>}
{<definition of mark>}

enter image description here

Code:

\documentclass[draft,12pt,a4paper]{article}
\usepackage[footnote,printonlyused]{acronym}
\usepackage{scrextend}
\deffootnote[1.0em]{3.2em}{10em}
{\textsuperscript{\thefootnotemark}\,\enskip}

\begin{document}
foo\footnote{foo: this footnotetext explaines what foo is}
bar\footnote{bar: this very very very very very very very long text explains in  two lines what bar is, it would be nice if this line is indented behind the colon, starting below the 'this'.}
\end{document}
Related Question