[Tex/LaTex] List/Itemize with image bullets

formattinggraphicsspacing

I want to have something like bullets but with images, I found an example but it doesn't align quite well. The text should be aligned to the center of the image and the image (preferably it's center) should be align to the other paragraphs.

This is a contrast of the wrong and the right result:
enter image description here

Example code, this is just an implementation feel free to do it your way:

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}

    \newcommand*{\warn}{%
     \item[{\includegraphics[width=0.6cm]{Trees5}}]%
    }

\title{Your Paper}
\author{You}



\begin{document}
Once upon a time, there was a little girl who lived in a village near the forest.  Whenever she went out, the little girl wore a red riding cloak, so everyone in the village called her Little Red Riding Hood.

One morning, Little Red Riding Hood asked her mother if she could go to visit her grandmother as it had been awhile since they'd seen each other.
\begin{itemize}
  \warn Granny is saved.
  \warn The wolf dies.
  \warn Hello world.
\end{itemize}

\end{document}

Best Answer

Here's an option using enumteim trough a dedicated gitemize list:

\documentclass{article}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{showframe}

\newlist{gitemize}{itemize}{4}
\setlist[gitemize,1]{
  leftmargin=\dimexpr0.3cm+\labelsep\relax,
  label={\smash{\raisebox{-0.25\height}{\includegraphics[width=0.6cm]{example-image-a}}}}
}

\begin{document}
Once upon a time, there was a little girl who lived in a village near the forest.  Whenever she went out, the little girl wore a red riding cloak, so everyone in the village called her Little Red Riding Hood.

One morning, Little Red Riding Hood asked her mother if she could go to visit her grandmother as it had been awhile since they'd seen each other.
\begin{gitemize}
  \item Granny is saved. Little Red Riding Hood asked her mother if she could go to visit her grandmother as it had been awhile since they'd seen each other.
  \item The wolf dies.
  \item Hello world.
\end{gitemize}

\end{document}

enter image description here

All alignment parameters are easily adjustable. I added the showframe package just to have a visual guide of the text area.

Related Question