There are two important things:
- Labels should be replaced by uniform LaTeX equivalents
- I'd like to bound each picture by a dotted rounded rectangle.
The thing is, while I can easily accomplish my first goal using psfrag, I found that to do the second, I could do:
Code: Select all
\begin{tikzpicture}[%
tight background,
background rectangle/.style = {draw=black, dotted,rounded corners=5ex},
show background rectangle]
\end{tikzpicture}
Is there a way for me to do both at the same time? That is, I'd like to import in an eps figure, bound it by a tikz background, then annotate it using psfrag?
If not, what is the alternative? I suppose I can convert from eps2pgf, then do the annotation and background entirely in tikz, but that sounds clunky.
The last alternative is to create the background I want in each image. The problem with that is that I want the rounded rectangles to be invariant with the scaling of the image (so they are each uniform in the document).
Suggestions?