[Tex/LaTex] How to insert the author picture in the biography picture box of the IEEE LaTeX Template

graphicsieeetran

How do I put the author picture in the picture frame box of a journal paper? I tried using this code but the picture wasn't placed in the box, it is outside the box. Here is the code:

\begin{biography}{{\includegraphics[width=25mm,height=32mm,clip,keepaspectratio]{a.eps}}}
Name ... was born in ... more text.
\end{biography} 

Best Answer

You're using the wrong biography environment. You need to use the IEEEbiography environment. Here is the correct code:

\begin{IEEEbiography}[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{a.eps}}]%
{name}
was born in ... on ... more text.
\end{IEEEbiography}