设为首页
收藏本站
用户名
Email
自动登录
找回密码
密码
登录
注册
快捷导航
平台
Portal
论坛
BBS
文库
项目
群组
Group
我的博客
Space
搜索
搜索
热搜:
shell
linux
mysql
本版
用户
LinuxSir.cn,穿越时空的Linuxsir!
»
论坛
›
Linux 发行版讨论区 —— LinuxSir.cn
›
Gentoo Linux
›
找到了simsun的粗斜体ttf文件,不用中文portage也可以了 ...
1
2
/ 2 页
下一页
返回列表
查看:
1351
|
回复:
13
找到了simsun的粗斜体ttf文件,不用中文portage也可以了
[复制链接]
orphen
orphen
当前离线
积分
2189
IP卡
狗仔卡
发表于 2005-9-5 03:01:39
|
显示全部楼层
|
阅读模式
http://www.magiclinux.org/people/kanker/tools/fonts/
http://www.magiclinux.org/people ... nts/SimSun-Bold.ttf
http://www.magiclinux.org/people ... mSun-BoldItalic.ttf
http://www.magiclinux.org/people ... s/SimSun-Italic.ttf
放置到simsun同目录下就可以,再fc-cache -v&&/etc/init.d/xfs restart就可以了
10号字以上的显示都很好,再小的发虚。
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
显身卡
orphen
orphen
当前离线
积分
2189
IP卡
狗仔卡
楼主
|
发表于 2005-9-5 05:13:38
|
显示全部楼层
做了一点对local.conf的修改,使10-15号字更清晰
给大家作为参考
谁有更好的,贴出来
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
<dir>/usr/share/fonts</dir>
<dir>/usr/share/fonts/local</dir>
<dir>/usr/share/fonts/zh_CN</dir>
<dir>/usr/local/share/fonts</dir>
<dir>/usr/share/fonts/zh_CN/TrueType</dir>
<dir>/usr/X11R6/lib/X11/fonts</dir>
<match target="font" >
<test compare="more_eq" name="spacing" >
<const>dual</const>
</test>
<edit mode="assign" name="globaladvance" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<test compare="more" target="pattern" name="weight" >
<const>medium</const>
</test>
<edit mode="assign" name="weight" >
<const>bold</const>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>Tahoma</string>
</test>
<edit name="family" mode="append" binding="strong">
<string>SimSun</string>
</edit>
</match>
<match target="pattern" >
<test compare="eq" name="family" qual="any" >
<string>AR PL KaitiM GB</string>
</test>
<edit mode="prepend_first" binding="strong" name="family" >
<string>Bitstream Vera Sans</string>
</edit>
</match>
<match target="pattern" >
<test compare="eq" name="family" qual="any" >
<string>AR PL Mingti2L GB</string>
</test>
<edit mode="prepend_first" binding="strong" name="family" >
<string>Bitstream Vera Serif</string>
</edit>
</match>
<match target="pattern" >
<test compare="eq" name="family" qual="any" >
<string>AR PL KaitiM Big5</string>
</test>
<edit mode="prepend_first" binding="strong" name="family" >
<string>Bitstream Vera Sans</string>
</edit>
</match>
<match target="pattern" >
<test compare="eq" name="family" qual="any" >
<string>AR PL Mingti2L Big5</string>
</test>
<edit mode="prepend_first" binding="strong" name="family" >
<string>Bitstream Vera Serif</string>
</edit>
</match>
<!--
default settings for all fonts.
-->
<match target="font" >
<edit mode="assign" name="antialias" >
<bool>true</bool>
</edit>
<edit mode="assign" name="hintstyle" >
<const>hintslight</const>
</edit>
<edit mode="assign" name="hint" >
<bool>true</bool>
</edit>
<edit mode="assign" name="autohint" >
<bool>false</bool>
</edit>
</match>
<match target="font" >
<test compare="more_eq" name="pixelsize" >
<int>12</int>
</test>
<test compare="less_eq" name="pixelsize" >
<int>18</int>
</test>
<!--test mode="assign" name="weight" >
<const>bold</const>
</test-->
<edit mode="assign" name="antialias" >
<bool>false</bool>
</edit>
</match>
<!--
bingding Bitstream Vera Sans Mono to monospace
-->
<match target="pattern" >
<test name="family" qual="any" >
<string>monospace</string>
</test>
<edit mode="append" binding="strong" name="family" >
<string>Bitstream Vera Sans Mono</string>
</edit>
</match>
<match target="font" >
<test compare="contains" target="pattern" name="lang" >
<string>zh-cn</string>
<string>zh-tw</string>
<string>ja</string>
<string>ko</string>
</test>
<test compare="eq" name="spacing" >
<const>mono</const>
</test>
<edit mode="assign" name="globaladvance" >
<bool>false</bool>
</edit>
<edit mode="assign" name="size" >
<plus><double>1</double></plus>
</edit>
</match>
<match target="font">
<test name="family" qual="any" >
<string>SimHei</string>
<string>FZHeiTi</string>
<string>SimSun</string>
<string>NSimSun</string>
</test>
<edit mode="assign" name="globaladvance" >
<bool>false</bool>
</edit>
</match>
</fontconfig>
复制代码
回复
支持
反对
使用道具
举报
显身卡
wangxudong
wangxudong
当前离线
积分
987
IP卡
狗仔卡
发表于 2005-9-5 12:03:51
|
显示全部楼层
效果图?
回复
支持
反对
使用道具
举报
显身卡
kingway
kingway
当前离线
积分
434
IP卡
狗仔卡
发表于 2005-9-5 12:19:48
|
显示全部楼层
同问:效果图?
回复
支持
反对
使用道具
举报
显身卡
orphen
orphen
当前离线
积分
2189
IP卡
狗仔卡
楼主
|
发表于 2005-9-5 12:54:16
|
显示全部楼层
效果图如下
现emerge的gimp,为了截图~
主目录中的字体是纯的simsun
本帖子中包含更多资源
您需要
登录
才可以下载或查看,没有帐号?
注册
x
回复
支持
反对
使用道具
举报
显身卡
links
links
当前离线
积分
253
IP卡
狗仔卡
发表于 2005-9-5 13:00:08
|
显示全部楼层
标点符号有问题,逗号都跑到上面去了
回复
支持
反对
使用道具
举报
显身卡
orphen
orphen
当前离线
积分
2189
IP卡
狗仔卡
楼主
|
发表于 2005-9-5 13:01:25
|
显示全部楼层
是的,仅在
全角粗体
中有这个问题
回复
支持
反对
使用道具
举报
显身卡
soloforce
soloforce
当前离线
积分
2280
IP卡
狗仔卡
发表于 2005-9-5 16:51:25
|
显示全部楼层
不尽如人意呀。。。
回复
支持
反对
使用道具
举报
显身卡
nwslustc
nwslustc
当前离线
积分
398
IP卡
狗仔卡
发表于 2005-9-5 17:43:42
|
显示全部楼层
我修改了一下,标点没问题,但没有空间上传:(
大家也可用 fontforge 自己修改。
回复
支持
反对
使用道具
举报
显身卡
babychu
babychu
当前离线
积分
378
IP卡
狗仔卡
发表于 2005-9-5 18:01:31
|
显示全部楼层
文泉字体出来已经有断时间了
非常不错 为什么不用呢?
回复
支持
反对
使用道具
举报
显身卡
下一页 »
1
2
/ 2 页
下一页
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
注册
本版积分规则
发表回复
回帖后跳转到最后一页
浏览过的版块
Slackware Linux
SuSE Linux
LinuxSir 论坛管理
Linux 程序设计专题讨论
Debian Linux
开源软件专题讨论
Mandriva Linux
Copyright © 2002-2023
LinuxSir.cn
(http://www.linuxsir.cn/) 版权所有 All Rights Reserved.
Powered by
RedflagLinux!
技术支持:
中科红旗
|
京ICP备19024520号
快速回复
返回顶部
返回列表