I use :
\documentclass[a4paper,11pt,final]{article}
I would like insert Male and Female symbols in my report,
I have tried with \usepackage{marvosym} but that is not working :
LaTeX Error: Command \EUR already defined.
Could you help me ?
Detexify lets you draw the symbol then gives you a set of possible matches. From that site, maybe this would work for you?
\usepackage{wasysym}
\begin{document}
\mars%
\female%
\end{document}
wasysym, you should use \male instead of \mars. Even if their output is the same (which I don’t know), there’s no reason not to use the semantically logical \male next to \female.
– doncherry
May 20 '13 at 22:32
\documentclass{article} \usepackage{marvosym} \begin{document} \Male \quad \Female \end{document}. – jub0bs May 20 '13 at 14:02