I am despairing trying to solve the following problem. When compiling the following minimal example:
\documentclass{article}
\usepackage{times}
\usepackage[document]{ucs}
\usepackage[polutonikogreek, english]{babel}
\usepackage[utf8x]{inputenx}
\usepackage[LGR,T1]{fontenc} % T2A is Cyrillic
\newcommand{\grrk}{\selectlanguage{polutonikogreek}\fontencoding{LGR}}
\newcommand{\ee}{\selectlanguage{english}\fontencoding{T1}}
\begin{document}
\grrk ἀφιέναι \ee `to send off, discharge', with infinitive: `suffer, permit'
\end{document}
Running pdflatex, I get the following error:
(C:\Users\rvw\AppData\Roaming\MiKTeX\2.9\tex\latex\unicode\ucsencs.def
fontencoding LGR patched
) (C:\Users\rvw\AppData\Roaming\MiKTeX\2.9\tex\latex\grtimes\lgrptm.fd)Running miktex-makemf.exe...
miktex-makemf: The grtm source file could not be found.
Running hbf2gf.exe...
hbf2gf (CJK ver. 4.8.0)
Couldn't find `grtm.cfg'
miktex-maketfm: No creation rule for font grtm10.
! Font LGR/ptm/m/n/10=grtm10 at 10.0pt not loadable: Metric (TFM) file not foun
d.
<to be read again>
relax
l.10 \grrk
ἀφιέναι \ee `to send off, discharge', with infinitive: `...
Everything is all right if I do not include \usepackage{times}.
I understand the problem has to to with my font installation. But I am completely lost trying to understand how to solve it.
I am using MikTeX, all packages updated, on a win7 machine.
LaTeX Font Info: No file LGRptm.fd. on input line 10.. So latex falls back to cmr. In miktex LGRptm.fd exists (from thegrtimespackage) but as the readme of this packages says the fonts themselves are not provided. Ruprecht: Do you want to use a "times greek" font, or would it be enough if the non-greek text uses times and greek uses cmr? – Ulrike Fischer Dec 07 '11 at 11:32