I had some trouble getting my footnotes to stick to the bottom of the page, so I used:
\usepackage[hang,bottom]{footmisc}.
This solved the problem, but for one part of my document I want to place a single line at the bottom of the page, and I do this with:
\vfill
Normally this works fine, but there is a footnote on the page and the [bottom] option of footmisc seems to reserve whitespace above the footnote for some reason, so \vfill doesn't push the line all the way to the bottom. I can of course place it manually, but that's not why I'm using Latex. Any workaround for this would be greatly appreciated.
Here's a MWE:
\documentclass[a4paper]{article}
\usepackage[hang,bottom]{footmisc}
\begin{document}
This is my text\footnote{this is my footnote}
\vfill
This is my bottom-of-page comment
\end{document}




\vfilis the same as\par\vspace{0pt plus 1fil}(first order infinite glue),\vfillthe same as\par\vspace{0pt plus 1fill}(second order infinite glue). But there's a third order, for tough cases. – egreg Jun 02 '16 at 17:17