is there a way use .eps figure from autocad and edit its labels using the psfrag package? I tried with exporting figure from autocad directly to .eps and then, in figure environment, I used \psfrag command as manual says. Here is a simple code:
\documentclass{book}
\usepackage{psfrag}
\usepackage{graphicx}
\usepackage{auto-pst-pdf}
\begin{document}
la figura รจ:
\begin{figure}[h]
\centering
\psfrag{a}{$y+2$}
\psfragfig[scale=0.2]{prova.eps}
\end{figure}
\end{document}
The file .eps is created using auto cad and it is a simple Line text with the only letter a
Latexorpdftexcore or something else? โ Raaja_is_at_topanswers.xyz Oct 12 '18 at 05:55sin xit will not work unless the string(sin x)is literally in the eps file, so you can check with a text editor which strings are in the EPS. PostScript strings are(...)delimited. โ David Carlisle Oct 14 '18 at 15:57