保持英语表中希伯来语从右到左的顺序

保持英语表中希伯来语从右到左的顺序

简单来说,希伯来语单词在第一个例子中显示正确,但在第二个例子中显示倒置。我如何才能保持文本从右到左的方向?

\documentclass{article}
\usepackage{cjhebrew}
\begin{document}

\begin{cjhebrew}
b*:re’+siyt 
\end{cjhebrew}

\begin{tabular}{ll}
English L to R text & \begin{cjhebrew}b*:re’+siyt\end{cjhebrew} \\
\end{tabular}

\end{document}

在此处输入图片描述

答案1

从手册来看,您似乎应该使用\cjRL内联希伯来语:

\documentclass{article}
\usepackage{cjhebrew}
\begin{document}

\begin{cjhebrew}
b*:re’+siyt 
\end{cjhebrew}

\begin{tabular}{ll}
English L to R text & \cjRL{b*:re’+siyt} \\
\end{tabular}

\end{document}

输出

相关内容