There's a few things going on here so I'll break it down.
I'm trying to do three things:
- use a Times font.
- typeset phonetic characters using the tipa package (with Times).
- typeset Greek (ideally using
polutonikogreek
with babel).
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[polutonikogreek,english]{babel}
\usepackage{txfonts}
\usepackage{mathptmx}
\usepackage{tipa}
\begin{document}
The quick brown fox jumps over the lazy dog.
\textgreek{The quick brown fox jumps over the lazy dog.}
\textipa{\*The quick brown fox jumps over the lazy dog.}
\end{document}
%when \usepackage{txfonts} not present:
%(1) \textgreek{...} fails to display (! Font LGR/ptm/m/n/10=grtm10 at 10.opt not loadable: Metric (TFM) file not found.)
%(2) \textipa{...} displays as `times' (good).
%when \usepackage{mathptmx} not present:
%(1) \textgreek{...} displays correctly.
%(2) \textipa displays as `computer modern': (LaTeX Warning: Font shape `T3/txr/m/n' undefined)
%when both \usepackage{txfonts} and \usepackage{mathptmx} are present:
%(1) \textgreek{...} fails to display (! Font LGR/ptm/m/n/10=grtm10 at 10.opt not loadable: Metric (TFM) file not found.)
%(2) \textipa{...} displays as `times' (good).
%when neither \usepackage{txfonts} nor \usepackage{mathptmx} are present: document stalls while compiling.
Code: Select all
LaTeX Warning: Font shape `T3/txr/m/n' undefined
polutonikogreek
, Greek text fails to display.
Code: Select all
! Font LGR/ptm/m/n/10=grtm10 at 10.opt not loadable: Metric (TFM) file not found.
Any suggestions on how I can solve any of these issues would be welcome. The used distribution is MiKTeX.