0

enter image description here

Hello, using \footnote{insert footnote}looks weird with my footer defined as follows. Is there a method to put the footnote below the footer line? Or any other presentation that looks good

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{}
\fancyfoot[R]{ \thepage\ }
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.8pt}
\usepackage{booktabs}
\usepackage{dcolumn}

I also landed on footnote-in-footer‌​, and it seems like what I exactly want, but somehow doesn't work for me.[tex.stackexchange.com/questions/23486/footnote-in-footer‌​]

2 Answers2

2

add this in your preamble \usepackage[bottom]{footmisc}

Éric F
  • 21
1

Two suggestions (not mutually exclusive):

  • Don't use a footer line.

  • Load the footmisc package with the option bottom. This will ensure that the footnote(s) will always be placed at the very bottom of the page.

Mico
  • 506,678
  • Noted! I also landed on this, and it seems like what I exactly want, but somehow doesn't work for me.[https://tex.stackexchange.com/questions/23486/footnote-in-footer] – Kusha Verma Sep 10 '17 at 19:29
  • @KushaVerma - The "solution" in the link you provide "works" if, and only if, there's only one footnote per page that doesn't occupy more than two lines. Not a very general solution, in my view... – Mico Sep 10 '17 at 19:47