I would like to have a symbol (own drawn and saved as SymbolforLinkStartRecording.png) at the left and the text at the right. wrapfigure is working well, but I do not know how to define the end of using space right of the icon. What command do I use to tell Latex: "now set the text under the figure?"
\begin{center} and \end{center} does not work.
\section*{Start the Recording}
\begin{center}
\begin{wrapfigure}{l}{0.1\textwidth}
\includegraphics[height=6ex]{images/SymbolforLinkStartRecording.png}
\end{wrapfigure}
Start the Recording with this link on the desktop
\end{center}
And I am looking for somathing like \begin{itemize} ... \end{itemize} but with own symbol for each item
\begin{itemize}
\item[picture1.png] first sentence
\item[picture2.png] second sentence
\end{itemize}
Or say it in other words: At the left a small picture as symbol. And at the right the explanatio of the symbol in words with text by using all known LaTex commands for text.


example-imageas the image name as that is in the distributions for testing). wrapfig does not work in lists (includingcenterals what is th eintent of\caption[start recording]{}it will say Figure: 2 in the text andStart recordingin the list of figures? – David Carlisle Oct 10 '17 at 18:00itemize– David Carlisle Oct 10 '17 at 18:20\includegraphicsanywhere that you can use text so you can do exactly that just replace the checkmarks by the images you want, as in my answer below. – David Carlisle Oct 10 '17 at 18:35\begin{wrapfig}[1]{l}and it will only cut out 1 line (or[2]or however many lines you want.) (but I doubt that wrapfig is the correct tool here you want an itemized list not a figure) – David Carlisle Oct 10 '17 at 19:36