Ubuntu 中缺少字体(SimSun)

Ubuntu 中缺少字体(SimSun)

之前我在 Windows 7 中使用 Miktex 使用 Xelatex 编译了我的文件,运行正常。现在我在 Ubuntu 12.04 中安装 TexLive 2009 并再次编译同一个文件,但编译后出现以下错误(xelatex myfile.tex):

kpathsea: Running mktexmf SimSun
! I can't find file `SimSun'.
<*> ...:=ljfour; mag:=1; nonstopmode; input SimSun

Please type another input file name
! Emergency stop.
<*> ...:=ljfour; mag:=1; nonstopmode; input SimSun

Transcript written on mfput.log.
grep: SimSun.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; input SimSun' failed to make SimSun.tfm.
kpathsea: Appending font creation commands to missfont.log.

! Font \zf@basefont=SimSun at 10.0pt not loadable: Metric (TFM) file or install
ed font not found.
<to be read again> 
               \let 
l.30 \setCJKmainfont{SimSun}
Set Chinese font, complusory
? 

有什么方法可以在 Ubuntu 的 Windows 7 中使用适用于 MikTex 的字体吗?或者有任何其他方法可以处理它?

梅威瑟:

\documentclass[a4paper]{article}

\usepackage{xeCJK}
\setCJKmainfont{SimSun}
\xeCJKsetup{PunctStyle=kaiming,CJKspace=true,CheckSingle=true} 

\begin{document}
宋體中文字
\end{document}

答案1

问题是,在 (L)ubuntu 中文件名区分大小写,但在 Windows (XP) 中不区分大小写。从 Windows 迁移到 Ubuntu 时,出现了这个问题。

相关内容