在openoffice中添加windows字体后,怎么使编辑文件时首先使用宋体

系统字体配置、中文显示和输入法问题
回复
scggs
帖子: 43
注册时间: 2008-10-17 16:48

在openoffice中添加windows字体后,怎么使编辑文件时首先使用宋体

#1

帖子 scggs » 2008-11-07 16:44

在openoffice中添加windows字体后,怎么使编辑文件时首先使用宋体
jxzlq
帖子: 10
注册时间: 2008-05-27 23:04

Re: 在openoffice中添加windows字体后,怎么使编辑文件时首先使用宋体

#2

帖子 jxzlq » 2008-11-07 18:36

sudo vim /etc/fonts/conf.d/49-sansserif.conf 把星号部分改成simsun试试。

<?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****></string>
</edit>
</match>
</fontconfig>
回复