fontspec (xetex/luatex) and fontconfig

LuaTeX and XeTeX are passing on a warning on from the fontspec package, and I'm not sure whether I should worry. The following minimal code will generate the warning:

documentclass{report}
usepackage{fontspec}
setmainfont[Script=Cyrillic]{Arial}
begin{document}
end{document}

The warning is

fontspec warning: "script-not-exist"
Font 'Arial' does not contain script 'Cyrillic'.

Replacing 'Arial' with, for example, 'Charis SIL', results in no warning.

I believe I've traced the problem back to fc-list/ fontconfig. In the output of fc-list for the Arial font, I get the following 'capabilities' line:

 capability: "otlayout:arab otlayout:hebr otlayout:latn"(s)

This line does not mention Cyrillic (which would be the code 'cyrl', according to the newfontscript{Cyrillic}{cyrl} line in fontspec-xetex.sty). Fonts for which I do not get this warning, such as Charis SIL, explicitly mention Cyrillic in their capabilities lines:

capability: "ttable:Silf  otlayout:DFLT otlayout:cyrl otlayout:latn"(s)

Unfortunately, documentation of this "capability" line in the output of fc-list is limited to the line

capability  String  List of layout capabilities in the font

(that from https://www.freedesktop.org/software/fontconfig/fontconfig-user.html and a couple other places on the web)

My question is basically, should I worry about this warning message? Arial (and Charis) list 'ru', the ISO 639-1 code for Russian, in the 'lang' field. Just what is this "layout" capability for the Cyrillic script that Charis SIL supports, but Arial apparently does not, and why does it matter?

BTW, this is with the TeX Live 2017 distro.

链接地址: http://www.djcxy.com/p/33450.html

上一篇: LaTeX:将枚举环境添加到Tabular环境

下一篇: fontspec(xetex / luatex)和fontconfig