1

I've the following problem: I have some text and some figures in a two column environment. If the the text gets long and my figure floats to the next page my second column gets stretch as you can see in the image below. If I comment out the figure everything is fine. enter image description here

Here's my 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}

Is there any way to have the second column not stretched? I played around with \nobalance command already but without success.

Thanks in advance

nis
  • 83
  • 4

1 Answers1

1

You can use \raggedbottom or \filbreak before the picture.

Ulrike Fischer
  • 327,261