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.
Asked
Active
Viewed 1,749 times
1
1 Answers
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.

\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
pstricksby trial and erors. Maybe this might help. – Bernard Dec 19 '14 at 15:22