[Tex/LaTex] tombstones and beer mugs

funsymbolstheorems

I'm trying to find an alternative to the standard tombstone qed symbol for more informal papers.
I initially thought of an empty square with Pub written inside, but what would actually be better would be a small beer mug symbol. (much like the one found in this set of icons http://dutchicon.com/iconsets/food-and-drinks-icons)

Unfortunately there doesn't seem to such a symbol in the comprehensive latex symbol list (although many funny symbols can be found there).
Has anyone thought about this? Is there any quick-and-dirty solution?

Best Answer

I personally don't like the idea of the beer mug, but you could redefine \qedsymbol to use a previously saved image of a beer mug:

\documentclass{article}
\usepackage{graphicx}
\usepackage{amsthm}

\renewcommand\qedsymbol{\raisebox{-4pt}{\includegraphics[height=10pt]{beer-mug}}}

\begin{document}

\begin{proof}
Test proof of a really basic theorem.
\end{proof}

\end{document}

enter image description here