The following creates a perfect english document with some greek letters:
\documentclass[]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[polutonikogreek,english]{babel}
\begin{document}
English or \textgreek{ανηρ} text.
\end{document}
However, when I add this, It gets all upset about the hebrew characters being invalid characters.:
\documentclass[]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[polutonikogreek,hebrew,english]{babel}
\begin{document}
English or \textgreek{ανηρ} text.
And this גהר.
\end{document}
I have tried changing And this גהר., guessing there might be something like And this \texthebrew{גהר}. but I guess there is not?
I wonder if anyone can point me in the right direction. (In case it matters, I am trying to stuff this in a beamer document. The above is jut my MWE)
This related question does not answer the question for Hebrew: How to use both English and Greek (Tex Live & pdflatex) and even Hebrew easily in one document
This related question uses polyglossa instead of babel for xelatex users Perfect example document (template) for English, Greek and Hebrew (XeLaTeX)
utftoutf8xand now I get the error that the Hebrew letters are not available inT1- so I think the problem are the missing fonts. Can you useculmus-latexin texpad? – Christian Apr 17 '17 at 16:13\usepackage[T1,HE8]{fontenc}? – Christian Apr 17 '17 at 16:54