My goal is to be able to typeset the following sentence (taken from Wikipedia)
Using the cjhebrew package, the Hebrew works well, but the accents in Brʾeišyt don't work in addition to the Greek text being missing.The Book of Genesis (from Greek γένεσις meaning "origin"; Hebrew: בְּרֵאשִׁית, Brʾeišyt, "In the beginning"), is the first book of the Hebrew Bible and the Christian Old Testament.
Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{cjhebrew}\begin{document}The Book of Genesis (from Greek γένεσις meaning "origin"; Hebrew: \begin{cjhebrew}בְּרֵאשִׁית·\end{cjhebrew}, Brʾeišyt, "In the beginning"), is the first book of the Hebrew Bible and the Christian Old Testament.\end{document}
(This is with Greek from babel and Hebrew from cjhebrew.)
Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{cjhebrew}\usepackage[utf8]{inputenc}\usepackage[greek,english]{babel}\usepackage{ucs}\begin{document}The Book of Genesis (from Greek \selectlanguage{greek}γένεσις \selectlanguage{english}meaning "origin"; Hebrew: \begin{cjhebrew}בְּרֵאשִׁית·\end{cjhebrew}, Brʾeišyt, "In the beginning"), is the first book of the Hebrew Bible and the Christian Old Testament.\end{document}
Code: Select all
! Undefined control sequence.\u-default-1489 #1->\hebbetl.12 ...aning "origin"; Hebrew: \begin{cjhebrew}בְּרֵאשִׁית·\en...
I've also tried to use XeTeX and XeLaTeX, but I can't get MiKTeX 2.9 to install any of the requisite packages, in particular expl3 which fails in the package manager with
Code: Select all
MiKTeX Problem ReportMessage: Unknown archive file size.Data: expl3Source: libraries\miktex\packagemanager\internal.hLine: 909MiKTeX: 2.9OS: Microsoft Windows 7 Home Premium Edition, 64-bit Service Pack 1 (build 7601)Invokers: explorerSystemAdmin: yesPowerUser: noRoot0: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9Root1: C:\Users\Doug\AppData\Local\MiKTeX\2.9Root2: C:\ProgramData\MiKTeX\2.9Root3: C:\Program Files (x86)\MiKTeX 2.9UserInstall: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9UserConfig: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9UserData: C:\Users\Doug\AppData\Local\MiKTeX\2.9CommonInstall: C:\Program Files (x86)\MiKTeX 2.9CommonConfig: C:\ProgramData\MiKTeX\2.9CommonData: C:\ProgramData\MiKTeX\2.9
I've tried to do due diligence before posting on the forum by searching here, CTAN, and Google, but I could just be missing something simple. Any help or guidance would be appreciated. Thank you.