As the following minimal sample shows, a text wrapping around a picture starts wrapping with the first line. Including the wrapfigure in the text leads to strange paragraph breaks.
%----
\documentclass[bibliography=totoc,listof=totoc,12pt,a4paper,oneside]{scrbook}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage{wrapfig}
%----
\begin{document}
\begin{wrapfigure}[]{l}{0pt}
\vspace{-30pt}
\includegraphics{test}
\end{wrapfigure}
\textbf{Lorem-ipsum-dolor-sit-amet-consetetur-sadipscing-elitr (1)}. Now starts text \lipsum[1]
\end{document}
Any suggestions how to avoid the first line form wrapping around a picture like in the following scheme?

Edit:
I have found a way to solve the problem for a minimal example using picinpar and a window environment.
\begin{window}[<number of lines>, <align>, \includegraphics[]{<file>}, {<caption-text>}]
%---
\documentclass[bibliography=totoc,listof=totoc,12pt,a4paper,oneside]{scrbook}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage{picinpar}
%---
\begin{document}
\begin{window}[1, l, \includegraphics[]{test}, {}]
\textbf{Lorem-ipsum-dolor-sit-amet-consetetur-sadipscing-elitr (1)}.
Now starts text \lipsum[1]
\end{window}
\end{document}
But still I want to use schemeref to add numbering within a picture and therefore I need a figure environment and no such solution with window.
Any ideas regarding that?

wrapfigureenvironment between the heading line and the text doesn't work for you? (I'd recommend you used a paragraph break between them too) – henrique Mar 13 '12 at 13:27\textbf{(\textit{R})-2-methoxy-2-oxo-1-phenylethyl 3,6-dimethoxy-2-(2-methoxynaphthalen-1-yl)-benzoate (15)}. Now starts text \begin{wrapfigure}[]{l}{0pt} \vspace{-30pt} \includegraphics{test} \end{wrapfigure} \lipsum[1]<br/> Question is here, where to include the wrapfigure and i can't see a good way to do it like that, you agree? – JMR Mar 13 '12 at 13:39schemerefinto your MWE to show the problem? – Peter Grill Mar 13 '12 at 15:33