[Tex/LaTex] items with own icons/symbol, loaded from a png-file

itemizewrapfigure

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.

enter image description here

enter image description here

Best Answer

Just use the form that you suggest, but of course including the image not just printing the name so

\begin{itemize}
\item[\includegraphics{picture1.png}] first sentence
\item[\includegraphics{picture2.png}] second sentence
\end{itemize}
Related Question