Configuration: Report document class
Problem: \usepackage[bottom]{footmisc} is not producing footnotes to the bottom of page as it should, but rather in the middle of a page with few lines of body text.
According to users on the following thread:
Why is my footnote "glued" to the text? they suggested adding \usepackage[]{fixltx2e}before \usepackage[bottom]{footmisc} but that did not work either.
Question: Are there other factors causing this problem or what? Here is a MWE as requested below.
\documentclass{autemplate} % Offshoot from report document class
\addbibresource{sample.bib}
\RequirePackage[backend=biber,sorting=nyt]{biblatex}
\usepackage{fixltx2e}
\usepackage[bottom]{footmisc}
\begin{document}
Footnotes must be at the bottom of the page at all times.\footnote
{Institution requires footnotes always at the bottom}
One example is this \autocite[125]{Cross2000}.
\end{document}
\documentclass{...}and ending with\end{document}. You might also want to add to your question how you're including the pdfs etc. – Aradnix Sep 04 '14 at 01:36\autociteis a label that depends ofnatbiborbiblatex, isn't it? What happens if you use a simple and harmless\footnote? – Aradnix Sep 04 '14 at 04:40\autocite. After stripping out my cls file footnotes were place at the bottom of the text. So I have to work by elimination to see where the problem is. – Nhaps Sep 04 '14 at 05:20autemplateclass file? my guess is it’s patching\footnotein such a way that thefootmiscpackage can’t perform its hack to make the bottom placement. – wasteofspace Sep 04 '14 at 11:41