If you use the LaTeX Beamer package for your presentation and you want to replace your itemize bullets with something more fancy, you might be interested in the following commands:
\setbeamertemplate{itemize item}{\includegraphics[height=1em]{bin/gnome-foot}} \setbeamertemplate{itemize subitem}{\includegraphics[height=0.8em]{bin/gnome-foot}} |
These will set your bullets to anything you want 🙂 A plain LaTeX solution, which won’t work with Beamer, is to use \labelitem:
\renewcommand{\labelitemi}{\includegraphics{foo}} \renewcommand{\labelitemii}{\includegraphics{bar}} |
Hope this helps 🙂