LaTeX blank after number and before text

footnoteslatex

How could I make a blank after the number in my footnotes?
In a general way, for ALL footnotes!

Example:

good: 1 Hello World

bad : 1Hello World

Best Answer

EDIT: Ok, redesigned. Ugly hack, but hey, isn't LaTeX just a whole bunch of those?

Put the following into your preamble:

\let\myfootnote\footnote
\renewcommand{\footnote}[1]{\myfootnote{~#1}}

This will simply prefix your footnote text automagically with a non-breaking space, therefore creating a space after the foot note mark at the bottom of the page. And it won't touch the footnote mark in the middle of the text which is why it still works properly directly before punctuation.