I have a two-column paper. The structure is the following:
\documentclass[conference, letterpaper, 10pt]{IEEEtran}
\begin{document}
\title{mytitle}
\thanks{}
\author{}
\maketitle
% .. many sections
{
\bibliographystyle{IEEEtran}
\balance\bibliography{ref}
}
% big figure here
\begin{figure*}
\end{figure*}
The problem is that the figure is moved in a new page although there is a lot of space after the references. I tried many things, like using the package "flushend" etc, but I can't achieve what I would like: I want balanced references in the last page (at the top) with a figure* at the bottom in the same page.
IEEEtranhas its own method for manually balance a bibliography, through\IEEEtriggeratref{<n>}, where<n>stands for the first bibliography item that should appear in the second column. In any case, both\balance(that requires a package you're not showing) and the manual method can only work if they force a page break at the end of the bibliography and the figure will go to the next page nonetheless. – egreg Mar 12 '20 at 22:29