[Tex/LaTex] How to squeeze white spaces between sections and figures

formattingspacing

I am using a multicolumns article template for some kind of CV profile. I have all working as intended except of 1 small problem.

In my first column, I have quite some high amount of white space (between bottom of photo and "Profil"), that I don't understand how to remove. You can see an example in the picture below.Column with white space

The corresponding code is:

   \begin{document}
   \setlength{\columnsep}{.25in}
   \begin{multicols}{2}

{\LARGE John Doe}\ lorem \ ipsum

\NewPart{Kontakt}

lorem ipsum \begingroup \leftskip 1cm \includegraphics{foobar} \rightskip\leftskip \endgroup \NewPart{Profil} \subsection{Berufserfahrung} \begingroup \leftskip 0.7cm {\em (11 months)} Sfoobar \\ [0.6ex] {\em (2 months)} Blorem ipsum \\ [0.6ex] {\em (3 months)} foo bar \\ [0.6ex] \rightskip\leftskip \endgroup

Is there any way to remove all the spacing beween section and figure (as in the picture below)?

Best Answer

ok, inserting a

\columnbreak

a bit downstream gives the column flow as desired :)