[Tex/LaTex] Wrap text around a figure starting at the same vertical level

floatsvertical alignment

The title may sound like a duplicate and you may think that the package wrapfig deals with that. But, what I am asking for is quite different. I am not sure if the wrapfig package could help.

I have a figure and I want to place an explanation to the right side of it. I want them to start at the same vertical level, and then the text to wrap the figure around. I made a illustration in Inkscape. Please see the figure below:

enter image description here

So far I have tried to use the graphbox package, after the recommendation in this Tex-Exchange post . However, I couldn't figure out, how the text should continue at the next line. I even doubt if that package would help at all. I have placed the code I used for it is below. You can download the pdf file here (I cannot use \rule{width}{height} as the use of \includegraphics is required).

\documentclass{article}
\usepackage{mwe}
\usepackage{graphbox} 
\begin{document}
\begin{tabular}{ll}
\includegraphics[align=t,scale=0.75]{by-nc-nd-eu.pdf} & 
This work is licensed under the Creative Commons Attribution-Share Alike 3.0 License 
(CC BY-ND 3.0 ): http://creativecommons.org/licenses/by-nc-nd/3.0/\\
\end{tabular}
\end{document}

An the output is:

enter image description here

Any solution (including package, style recommendations) are appreciated!

Best Answer

Bingo!

\documentclass{article}
\usepackage{graphicx}
\usepackage{url}
\usepackage{wrapfig}
\begin{document}
\noindent
\begin{wrapfigure}[2]{l}{1cm}
    \centering
    \includegraphics[width=1cm]{example-image-a}\\
\end{wrapfigure}
This work is licensed under the Creative Commons Attribution-Share Alike 3.0 License
(CC BY-ND 3.0 ): \url{http://creativecommons.org/licenses/by-nc-nd/3.0/}

\end{document}

Use 2 for 2 lines, small letter l for not floating and change 1cm as you wish in [2]{l}{1cm}. Keep the same width in \includegraphics[width=1cm]... also.

enter image description here

With your picture:

\documentclass{article}
\usepackage{graphicx}
\usepackage{url}
\usepackage{wrapfig}
\begin{document}
\noindent
\begin{wrapfigure}[2]{l}{1.6cm}
    \centering
    \includegraphics[scale=0.55]{by-nc-nd-eu}\\
\end{wrapfigure}
This work is licensed under the Creative Commons Attribution-Share Alike 3.0 License
(CC BY-ND 3.0 ): \url{http://creativecommons.org/licenses/by-nc-nd/3.0/}

\end{document}

enter image description here