I'm trying to use Times New Roman Font in Latex - MiKTeX 2.9 with command
\usepackage{times}
but it said
pdfTex error (ptmr8z.vf): invalid character code
Any ideas or solutions?
I'm trying to use Times New Roman Font in Latex - MiKTeX 2.9 with command
\usepackage{times}
but it said
pdfTex error (ptmr8z.vf): invalid character code
Any ideas or solutions?
Instead using \usepackage{times}, for using Times font you can do:
%preambula here
\begin{document}
\usefont{T2A}{ftm}{m}{sl}
Times New Roman?
\end{document}
Hope, it'll be helpful!
\usepackage{mathptmx}? – Werner Mar 07 '13 at 21:15\usepackage{newtxtext}. And, if you want math, you can use\usepackage{newtxmath}(and if you have them installed\usepackage[lite]{mtpro2}). – Manuel Mar 07 '13 at 21:43tgtermesor thenewtxtextpackage. – Silke Mar 07 '13 at 22:32ptmr8z.vfis from the old version ofcspsfontspackage (from CSTeX). This is TimesRoman font in IL2 encoding. The CSpsfonts package was generally upgraded at October 2012, see http://math.feld.cvut.cz/olsak/cstex-e.html , the middle of this page. The most probably reason of this problem is that there exist files from old and new versions of this package mixed in the computer. The files include internal links from*.vfto*.tfmtor*.tfmetc. – wipet Mar 24 '15 at 10:36