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
\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
\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->\hebbet
l.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 Report
Message: Unknown archive file size.
Data: expl3
Source: libraries\miktex\packagemanager\internal.h
Line: 909
MiKTeX: 2.9
OS: Microsoft Windows 7 Home Premium Edition, 64-bit Service Pack 1 (build 7601)
Invokers: explorer
SystemAdmin: yes
PowerUser: no
Root0: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9
Root1: C:\Users\Doug\AppData\Local\MiKTeX\2.9
Root2: C:\ProgramData\MiKTeX\2.9
Root3: C:\Program Files (x86)\MiKTeX 2.9
UserInstall: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9
UserConfig: C:\Users\Doug\AppData\Roaming\MiKTeX\2.9
UserData: C:\Users\Doug\AppData\Local\MiKTeX\2.9
CommonInstall: C:\Program Files (x86)\MiKTeX 2.9
CommonConfig: C:\ProgramData\MiKTeX\2.9
CommonData: 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.