http://blog.csdn.net/argansos/article/month/2011/08

安装poppler-data

  1. sudo apt-get install poppler-data  


修改字体设置

  1. sudo chmod 777 /etc/fonts/conf.d/49-sansserif.conf  
  2. sudo gedit /etc/fonts/conf.d/49-sansserif.conf  


-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->

<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>WenQuanYi Micro Hei</string>
</edit>
</match>
</fontconfig>

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------

将第四项sans-serif改为WenQuanYi Micro Hei。

相关文章:

  • 2021-07-16
  • 2021-08-22
  • 2022-03-10
  • 2022-12-23
  • 2021-05-03
猜你喜欢
  • 2021-05-22
  • 2022-12-23
  • 2021-03-27
  • 2021-10-25
  • 2021-06-29
  • 2022-12-23
  • 2021-09-25
相关资源
相似解决方案