安装 TexLive 2013 后未找到 Jerus10 字体度量 (TFM) 文件

安装 TexLive 2013 后未找到 Jerus10 字体度量 (TFM) 文件

首先我要说一下,我是 ubuntu 和 texlive 的新手。

我刚刚安装了 texlive2013 并正在尝试在 ubuntu 12.04 TLS 上创建 pdf。

我同时使用英语和希伯来语,但似乎都不起作用:当尝试创建 PDF 时,我收到了(显然已知的)消息:

Font LHE/cmr/m/n/10=jerus10 at 10.0pt not loadable: Metric (TFM) file not found

我已经安装了texlive-fonts-recommended,但是似乎没有帮助。

我认为虽然字体已安装,但获取其路径可能会有问题。

有谁对解决这个问题或了解其原因有什么建议吗?


TeX 多元素分析:

%% LyX 2.0.2 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english,hebrew]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{xunicode}
\begin{document}
\selectlanguage{english}%
hello\selectlanguage{hebrew}%
\end{document}

答案1

的一部分安装-tl-ubuntu用于添加对希伯来语的支持的代码如下(我对其进行了编辑,以便它有机会独立工作)。如果没有其余脚本,我不知道它是否适合您。

dTEXMFLOCAL="$(kpsewhich -var-value TEXMFLOCAL)"
WGET_CMD="wget --tries=5"
mkdir "/tmp/HebrewFonts" &&
cd "/tmp/HebrewFonts" &&
${WGET_CMD} "http://archive.debian.org/debian/pool/main/i/ivritex/ivritex_1.1.1-6_all.deb" &&
ar x "ivritex_1.1.1-6_all.deb" && tar -xf "data.tar.gz" &&
rsync -a "usr/share/texmf/" "${dTEXMFLOCAL}"
mktexlsr "${dTEXMFLOCAL}"

答案2

作为你的第一选择,请尝试关注@scottkosty建议;但如果做不到,你也可以尝试我的类似解决方法对于这个(也类似的)问题:

如何在 Windows 上为 TeXLive 添加希伯来语支持(使用 pdfTeX+babel)?

相关内容