Document Classes ⇒ babel and times incompatibility
babel and times incompatibility
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
babel and times incompatibility
Re: babel and times incompatibility
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: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
babel and times incompatibility
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}
Re: babel and times incompatibility
That seems to work.