My tables are being spread out across a page, and using t for placement wouldn't help. What should I do? I've tried \raggedbottom, which does not work.
MWE:
\usepackage{array}
\usepackage{booktabs}
\usepackage{placeins}
\begin{document}
Blah blah blah.
\FloatBarrier
\newpage %Here the pages with tables begins.
\begin{table}[b]
... Tabular Blah Blah ...
\end{table}
\begin{table}[b]
... Tabular Blah Blah ...
\end{table} % Lots of the tables
\FloatBarrier
\newpage %Following this page is something that's not tables.
Blah blah blah.
Thanks in advance!

\begin{table}(and figure) permit LaTeX to place the float top/bottom/here, but don't force it to. – Norman Gray Aug 10 '23 at 09:41