If I use a float in the same page where I have the paracol environment, the floats get placed where it is irrespective from the argument. See my MWE. The float on page 1 should be at the bottom, like the one in page 2, but it stays at the top. Why? (If I comment out the paracol all goes well)
\documentclass{article}
\usepackage[]{lipsum}
\usepackage{paracol}
\begin{document}
\begin{figure}[b]
Some text that should go at the bottom.
\end{figure}
\columnratio{0.65}
\begin{paracol}{2}
\sloppy
\noindent
Some text in two columns.
\switchcolumn
\noindent
{\scriptsize Some more text in the second column.} \end{paracol}
\lipsum{1}
\begin{figure}[b]
Some text that should go at the bottom.
\end{figure}
\lipsum{1}
\end{document}
\twocolumn,\newgeometryorlandscape, cause a\clearpageto empty the queue first. Why shouldparacolbe any different? BTW, I forgot that there can only be one bottom float per page (bottomnumber=1). – John Kormylo Apr 30 '23 at 18:21\lipsum[1]does one paragraph, while\lipsum{1}is the same as\lipsum{}1. – John Kormylo May 01 '23 at 02:21