1

I am inserting an .eps figure. So is it possible to include some geometric shapes (ellipse, rectangle) inside the inserted eps figure. I googled, but couldn't find a proper solution. Any help would be appreciable.

David Carlisle
  • 757,742
user8162
  • 375

1 Answers1

4

You can use any latex drawing package to draw over an image, tikz, pstricks or here I just use the standard latex picture commands, enhanced via the pict2e package.

enter image description here

\documentclass{article}

\usepackage{graphicx}
\usepackage{pict2e}

\begin{document}

Original:

\includegraphics{man}


enhanced

\includegraphics{man}%
\begin{picture}(0,0)
\put(-80,150){\framebox(10,10){}}
\put(-60,150){\framebox(10,10){}}
\put(-70,140){\oval(20,5){}}
\end{picture}

\end{document}
David Carlisle
  • 757,742