Document Classes ⇒ babel and times incompatibility
babel and times incompatibility
Are the packages "babel" and "times" inherently incompatible? I had problems using the "babel" package, but turning off "times" seemed to fix it. But is there any way to use the two package together?
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
babel and times incompatibility
LaTeX.org admin
Re: babel and times incompatibility
Thanks Stefan, I didn't know the times package was obsolete. But the mathptmx seems to produce the same incompatibility with babel.
E.g.:
\documentclass{article}[12pt]
\usepackage{mathptmx}
\usepackage[polutonikogreek,english]{babel}
\usepackage[or]{teubner}
\begin{document}
This is Greek: \textgreek{\as sk\wci{} \es n \as ige\ia w---ko\ua rh d'' \es peb\ha set'' \as p\ha nhc}
\end{document}
doesn't work.
E.g.:
\documentclass{article}[12pt]
\usepackage{mathptmx}
\usepackage[polutonikogreek,english]{babel}
\usepackage[or]{teubner}
\begin{document}
This is Greek: \textgreek{\as sk\wci{} \es n \as ige\ia w---ko\ua rh d'' \es peb\ha set'' \as p\ha nhc}
\end{document}
doesn't work.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
babel and times incompatibility
Hi beoram,
it seems there's no greek encoding available with the times font. Try this example, selecting cmr with LGR encoding:
Stefan
it seems there's no greek encoding available with the times font. Try this example, selecting cmr with LGR encoding:
Code: Select all
\documentclass{article}[12pt]
\usepackage{mathptmx}
\usepackage[polutonikogreek,english]{babel}
\usepackage[or]{teubner}
\begin{document}
This is Greek:
\fontencoding{LGR}\fontfamily{cmr}\selectfont
\textgreek{\as sk\wci{} \es n \as ige\ia w---ko\ua rh d'' \es peb\ha set'' \as p\ha nhc}
\normalfont
This was Greek.
\end{document}
LaTeX.org admin
Re: babel and times incompatibility
Many thanks Stefan.
That seems to work.
That seems to work.