I am using the ACM latex template and trying to place a wide figure on the bottom of the page using \begin{figure*}[b]. However, it always goes to the next page. I also tried using [!hb] but it does not work. When I was using the IEEE template it worked nicely. But with the ACM template does not work. I also tried using these two packages but they provide the same result.
\usepackage{float}
\usepackage{dblfloatfix}
\begin{figure*}[!b]
\centering
\includegraphics[width=\linewidth]{figures/Tpch01-ThroughputVsLatency-BufferVsPreAggParam}
\caption{text.}
\label{fig:TPC-H-01}
\end{figure*}
Solutions like this do not work because the capital H is not recognized anymore.
stfloatspackage (from thesttoolsbundle) and write\begin{figure*}[b] ... \end{figure*}. – Bernard Jul 17 '20 at 16:04LaTeX Error: Filesttools.sty' not found`. Do I have to download the file from somewhere or install a package? – Felipe Jul 17 '20 at 17:34sttoolsis not a package by itself. It is a bundle of packages. This bundle might be installed on your system. What is your distribution? – Bernard Jul 17 '20 at 17:37stfloats. If it's not installed, use TeX Live Package Manager to installsttools. – Bernard Jul 17 '20 at 17:41dblfloatfixpackage . tks – Felipe Jul 17 '20 at 17:46