I have a picture inside a wrapfigure that I wish to have alongside a section.
\documentclass{article}
\usepackage[english,french]{babel}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{lipsum}
\begin{document}
\begin{wrapfigure}{r}{0.3\textwidth}
\includegraphics[width=\linewidth]{foo_picture.png}
\end{wrapfigure}
\section{Section title}
\lipsum[1-2]
\end{document}
Unfortunately, the picture only starts at the beginning of the paragraph, and I want its top to be at the top of the section's title:
How to achieve this? I only have found answers to have the picture alongside of the title, but not next to both the title and the paragraph.

