如何在平衡的参考书目后放置图形*环境?

如何在平衡的参考书目后放置图形*环境?

我有一篇两栏论文。结构如下:

\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*}

问题是,尽管引用后还有很大的空间,但图形还是被移到了新页面中。我尝试了很多方法,比如使用“flushend”包等,但我无法实现我想要的效果:我想要在最后一页(顶部)平衡引用,而图形*在同一页的底部。

答案1

请尝试以下方法:

\documentclass[twocolumn,...]{...}
\usepackage{stfloats} % two column float locations
...
\begin{document}
lots of two column text
\begin{figure*}[b] % put at bottom of page
the graphic
\end{figure*}
\end{document}

stfloats有关更多详细信息,请参阅软件包文档( texdoc stfloats)。

相关内容