tags:

views:

169

answers:

1

The first line of my footnotes is indented. Using \noindent doesn't help. How do I get it unindented?

+4  A: 

Use footmisc package

\usepackage[hang,flushmargin]{footmisc} 

The 'hang' option flushes the footnote marker to the left margin of the page, while the 'flushmargin' option flushes the text as well. The documentation displays some other options that you could fiddle with to obtain the results you require.

from LatexUsersGroup written by Werner Grundlingh

Soldier.moth