For consistent style I always need the pictures at the beginning of the multicol environments. It's just that the images do not overlap over the bottom of the page.
What is the correct way to avoid overlapping environments (pictures) in multicol-environments?
With \setlength\premulticols{10\baselineskip} (found in manual '2 The User Interface') I solved the problem here.
But how to fix this in common?
\documentclass[fontsize=9pt, paper=a5]{scrreprt}%
\usepackage{caption}
\captionsetup[figure]{skip=2pt}
\usepackage{multicol}
\setlength{\multicolsep}{2.0pt plus 2.0pt minus 1.5pt}% 50%/3 of original values
\setlength\columnseprule{0.4pt}
% Solution?
\setlength\premulticols{10\baselineskip}
% https://tex.stackexchange.com/questions/12262/multicol-and-figures
\newenvironment{Figure}
{\medskip\noindent\minipage{\linewidth}}
{\endminipage\par\medskip}
\usepackage{mwe}
\usepackage{showframe}
\begin{document}
%\tableofcontents
\chapter{Erstes Kapitel}
\lipsum[1-3]
\begin{multicols}{2}
\begin{Figure}
\centering
\includegraphics[width=\linewidth, height=4cm]{example-image-a}
\captionof{figure}{my caption of the figure}
\end{Figure}
\lipsum[65-69]
\end{multicols}
\end{document}


