答案1
我不知道 Overleaf 中安装了哪些字体,但是
\documentclass[a4paper, 10pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage[english,hebrew]{babel}
\renewcommand{\rmdefault}{nachlieli}
\begin{document}
הנה קצת טקסט בעברית
\L{and here's some text in English}
\end{document}
我明白了
不要使用 nachlieli,试试 david、frank、aharoni、drugulin、yad、ellinia、miriam。除非您切换到 xetex 或 luatex(受支持),否则选择会非常有限babel
。例如,请参见:
外部链接是https://latex3.github.io/babel/guides/locale-hebrew.html
答案2
不妨尝试polyglossia
一下。
% !TeX TS-program = xelatex
\documentclass[a4paper, 10pt]{article}
%%\usepackage[utf8x]{inputenc} % not needed
\usepackage{polyglossia}
\setdefaultlanguage{english}
\newfontfamily\englishfont[Ligatures=NoCommon]{Linux Libertine O}
\setotherlanguage{hebrew}
\newfontfamily\hebrewfont[Script=Hebrew]{Arial}
\begin{document}
הנה קצת טקסט בעברית
\L{and here's some text in English}
\end{document}