It's a simple question: I'd like to put figure on the bottom of the page, but above footnote. I'm using memoir, but with documentclass{article} the result is the same.
Example:
\documentclass[article]{memoir}
\begin{document}
Some text\footnote{The footnote}
\begin{figure}[b]
\vspace{2cm}
\caption{Bild 2}
\end{figure}
\end{document}
I don't want to use a process of trial and error for each figure in my document, "hacking" the position option with an [h].

[b]could help ;-) You could drop thefigureenvironment and use\captionof{figure}{Bild 2}instead. (Needscaptionpackage) – Aug 11 '16 at 20:35Some text\footnote{The footnote} \vfill \begin{figure}[h]– Runar Aug 11 '16 at 20:40\usepackage[bottom]{footmisc}or (only in memoir)\feetbelowfloat– Ulrike Fischer Aug 11 '16 at 20:53\feetatbottombut without success. – Rodrigo Remedio Aug 11 '16 at 21:03\feetbelowfloatnot\feetatbottom– Ulrike Fischer Aug 11 '16 at 21:04\sloppybottominmemoir? – Werner Aug 13 '16 at 16:38