[Tex/LaTex] Reproducing an analog clock similar to the one provided by the ifsym package

symbols

Situation

I was browsing The Comprehensive LATEX Symbol List looking for a simple analog clock in which I could use in a pamphlet. At some moment, I found an interesting entry (page 91):

Clock entry

I tried to use the \showclock macro in my document, but unfortunately a pdflatex run showed me the following error:

! Undefined control sequence.
l.10 \showclock{4}{50}

In my Linux box with TL2011, the very same attempt to call \showclock{4}{50} gets even worse, with no ifsym package available.

Documentation

I tried to read the documentation, but texdoc ifsym lists only a German document, of which I only understand a few words – sadly. (Ich spreche kein Deutsch.) :( Anyway, the icon table in the end of the documentation gives me the idea of a possible font problem, like a missing indexing or reference.

MWE

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ifsym}

\begin{document}

\showclock{4}{50}

\end{document}

Question

Is there any package with a similar command, say \clock{<hours>}{<minutes>}?

Best Answer

\documentclass{article}
\usepackage[clock]{ifsym}

\begin{document}
Il est minuit 45 : \showclock{0}{45}
\end{document}    

enter image description here