避免两列平衡

避免两列平衡

我遇到了以下问题:我在两列环境中有一些文本和一些图形。如果文本变长,而我的图形浮动到下一页,我的第二列就会被拉伸,如下图所示。如果我注释掉图形,一切都会好起来。 在此处输入图片描述

这是我的 MWE:

\documentclass[twocolumn]{scrartcl}

\usepackage{blindtext}
\usepackage{pstricks}

\begin{document}
    \section{Section}
    \blindtext[1]
    \blindlist{enumerate}
    \section{Section}
    \blindtext[1]
    \blindlist{enumerate}
    \section{Section}
    \blindtext[1]
    \begin{pspicture}(0,0)(5cm,5cm)
        \psframe(0,0)(5cm,5cm)
    \end{pspicture}
\end{document}

有什么方法可以让第二列不被拉伸吗?我已经尝试过\nobalance命令,但没有成功。

提前致谢

答案1

您可以在图片前使用\raggedbottom或。\filbreak

相关内容