[Tex/LaTex] \camera symbol?

graphicssymbols

I would like to add camera symbol to headwords with photos (sometimes the photos are placed just bellow the headword, sometimes on the other page) so the user of dictionary can find certainly the photos. Is there a nice camera symbol, something like \Bicycle symbol etc. ? If no, what is the best way to do it?

Illustration

The picture above illustrates using png picture, but the height of the line is enlarged.

Best Answer

If you can work with XeLaTeX or LuaLaTeX, fontawesome package provides \faCamera and \faCameraRetro icons. (Update: fontawesome also works with pdflatex since version 4.3.0)

enter image description here

\documentclass{article}
\usepackage{fontawesome}
\usepackage{verbatim}

\begin{document}

\verb+fontawesome+ package includes (\verb+\faCamera+) \faCamera\ and (\verb+\faCameraRetro+) \faCameraRetro.

\end{document}
Related Question