I want to use \psfrag to replace text in EPS-graphs. This works pretty fine with this code:
Code: Select all
\documentclass[a4paper]{scrartcl}
\usepackage{auto-pst-pdf}
\usepackage{graphicx}
\usepackage{psfrag}
\begin{document}
Some text.
\begin{figure}[h!tbp]
\begin{center}
\scriptsize{
\psfrag{LS-DYNA keyword deck by LS-PrePost}{}
\psfrag{Nodal Temperature Data}{\small Knotentemperaturen in ^{\circ}\mathrm{C}}
\psfrag{Time}{\small Zeit in s}
\psfragfig[width=0.70\textwidth,keepaspectratio,angle=-90]{timestep_001.eps}
\caption{Figure from LS-PrePost}
\label{fig:prepost}
}
\end{center}
\end{figure}
Some more text.
\end{document}
I am using "TexnicCenter 2.0 Alpha 4" and MikTex 2.9 64-bit.
Regards, Wolfgang