How do I control footnotes' indentation in LaTeX? [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionThe first line of my footnotes is indented. Using \noindent
doesn't help. How开发者_运维百科 do I get it unindented?
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
精彩评论