用于列出 fontconfig 已知的所有等宽字体的命令

用于列出 fontconfig 已知的所有等宽字体的命令

我想要一个fontconfig已知的所有等宽字体的列表,我必须使用哪个命令?

答案1

该命令fc-list可以根据属性列出所有可用的字体。在你的情况下,需要搜索间距对应于单核细胞增多症,那就是100, 所以fc-list :spacing=100。更简单的形式fc-list :mono可能也可以。

例子:

$ fc-list :spacing=100

/usr/share/fonts/urw-fonts/n022003l.pfb: Nimbus Mono L:style=Regular
/usr/share/texmf-dist/fonts/opentype/public/semaphor/smftt10.otf: Semafor:style=Mono
/usr/share/fonts/TTF/luximbi.ttf: Luxi Mono:style=Bold Oblique
/usr/share/texmf-dist/fonts/type1/public/droid/DroidSansMono.pfb: Droid Sans Mono:style=Regular
/usr/share/texmf-dist/fonts/type1/public/bera/fvmbo8a.pfb: Bera Sans Mono:style=Bold Oblique
/usr/share/fonts/dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique
/usr/share/texmf-dist/fonts/type1/public/bera/fvmr8a.pfb: Bera Sans Mono:style=Regular
/usr/share/texmf-dist/fonts/opentype/public/semaphor/smfptt10.otf: Semafor:style=PersonPillar-Mono
/usr/share/texmf-dist/fonts/type1/urw/courier/ucrr8a.pfb: Nimbus Mono L:style=Regular

文件中提供了良好的库文档fontconfig(包括字体属性及其在 中选择的值) (将版本号更改为您的版本号)。fc-list/usr/share/doc/fontconfig-2.12.1/fontconfig-user.html

相关内容