全页图表是否使用 RevTeX?

全页图表是否使用 RevTeX?

我正在使用revtex4-2文档类(使用选项twocolumn)排版一篇文章,我想知道是否有任何方法可以将图形放在其自己的单独页面上,就像\begin{figure}[p]在其他文档类中使用该选项一样。(RevTeX 似乎完全忽略了该[p]选项。)

背景:我的文档中有几个较高的数字,如果页面上没有更多空间容纳常规文本,则会导致以下错误:

Output routine didn't use all of \box255.

这导致图形根本无法排版(相反,我得到一张空白页)。以下 MWE 应该可以说明这个问题:

\documentclass[twocolumn]{revtex4-2}

\usepackage{tikz}
\usepackage{lipsum}
\usepackage{standalone}
\usepackage{filecontents}

\begin{filecontents}{tall-figure.tex}
    \documentclass[crop, tikz]{standalone}
    \begin{document}
        \begin{tikzpicture}
            % For a height of 20, everything is fine:
            \draw (0, 0) rectangle (10, 21);
        \end{tikzpicture}
    \end{document}
\end{filecontents}

\begin{document}
    \lipsum[1-5]
    \begin{figure*}
        \includestandalone{tall-figure}
        \caption{Dummy Caption}
        \label{fig:dummy}
    \end{figure*}
    \lipsum[5-10]
\end{document}

非常感谢任何有关如何使用 RevTeX 获取整页图表的提示和建议 :)

相关内容