Hello,
I have a font rendering problem after transforming a DVI file into a PDF file by means of dvipdf or dvipdfm.The DVI file is created by means of latex from the following 'test.tex' file:
---[test.tex]---
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\section{A Section}
See Figure \ref{fig}.
\begin{figure}
\centering
\includegraphics[scale=.80]{test.eps}
\caption{A figure}\label{fig}
\end{figure}
\end{document}
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\section{A Section}
See Figure \ref{fig}.
\begin{figure}
\centering
\includegraphics[scale=.80]{test.eps}
\caption{A figure}\label{fig}
\end{figure}
\end{document}
---[/test.tex]
where the EPS figure 'test.eps' is generated by means of R from the following 'test.R' file:
---[test.R]---
x <- -4:4
y <- x^2
setEPS()
postscript(paste("chart.eps",sep=""),height=4,width=6)
plot(x,y, type="b", xlab=_expression_(paste(Delta, t)), ylab=_expression_(paste(Delta, t)^2))
grid()
dev.off()
---[/test.R]---
The font rendering problem is in the PDF rendering of the EPS figure, where in place of the greek symbol "Delta" I get a crossed circle.x <- -4:4
y <- x^2
setEPS()
postscript(paste("chart.eps",sep=""),height=4,width=6)
plot(x,y, type="b", xlab=_expression_(paste(Delta, t)), ylab=_expression_(paste(Delta, t)^2))
grid()
dev.off()
---[/test.R]---
Any idea on how to fix it?
-- users mailing list users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org