I need to place an image in the two column text like on the next picture:
I've tried wrapfig package to make it:
\documentclass{book}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{multicol}
\usepackage{blindtext}
\begin{document}
\begin{multicols}{2}
\blindtext[3]
\begin{wrapfigure}{l}[50pt]{0.25\textwidth}
\includegraphics[width=0.9\linewidth]{deco}
\end{wrapfigure}
\blindtext[2]
\end{multicols}
\end{document}
But it wraps the text only in one of the columns:
How it can be done correctly?


\parshapeexplanation and it solved my problem. – Amphyx Nov 27 '22 at 10:02