I want to know if there is a way to use box at multiple location inside a figure. I figured out how to hightlight one location by using node. But I need to add few more boxes to two subfloats so that I can compare them. Below is the figure. I added one red box and I want add 10 more of them to both top and bottom figure. Thank you!

Asked
Active
Viewed 685 times
0
axis cs:for the horizontal coordinates andrel axis cs:for the top and bottom. You can also name the axis and use(name.north)and(name.south). Then just define the perpendicular intersections(a |- b)or(a -| b)where a and b are two coordinates (no parentheses). – John Kormylo Sep 25 '19 at 23:11\begin{tikzpicture}
\node[anchor=south west,inner sep=0] at (-4.7,-2.2)
{\includegraphics[width=0.9\textwidth]{"ImpvsOriS2".eps}}; \draw[red,thick] rectangle (0.5,2.5); \draw[red,thick] rectangle (2.5,0) -- (3,0) -- (3,2.5) -- (2.5,2.5) -- (2.5,0); \end{tikzpicture} \caption{Comparison of original and modified QRSDS Method for (a) S1 and (b) S2} \label{fig:ImpCompDettest} \end{figure} – Yihan Chen Sep 26 '19 at 05:00