<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>邪恶的小星星 &#187; font</title>
	<atom:link href="http://www.xmxsuperstar.com/archives/tag/font/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xmxsuperstar.com</link>
	<description>Just Another Thinking</description>
	<lastBuildDate>Sun, 18 Dec 2011 06:08:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Linux Font Config Sample</title>
		<link>http://www.xmxsuperstar.com/archives/565/linux-font-config-sample.html</link>
		<comments>http://www.xmxsuperstar.com/archives/565/linux-font-config-sample.html#comments</comments>
		<pubDate>Thu, 07 Jul 2011 05:31:23 +0000</pubDate>
		<dc:creator>邪恶的小星星</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.xmxsuperstar.com/?p=565</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;!DOCTYPE fontconfig SYSTEM &quot;fonts.dtd&quot;&gt;
&lt;fontconfig&gt;

	&lt;match target=&quot;pattern&quot;&gt;
		&lt;test qual=&quot;any&quot; name=&quot;family&quot;&gt;
			&lt;string&gt;serif&lt;/string&gt;
		&lt;/test&gt;
		&lt;edit name=&quot;family&quot; mode=&quot;prepend&quot; binding=&quot;strong&quot;&gt;
			&lt;string&gt;DejaVu Serif&lt;/string&gt;
			&lt;string&gt;Bitstream Vera Serif&lt;/string&gt;
			&lt;string&gt;STHeiti&lt;/string&gt;
			&lt;string&gt;Hiragino Sans GB&lt;/string&gt;
			&lt;string&gt;HYSong&lt;/string&gt;
			&lt;string&gt;AR PL UMing CN&lt;/string&gt;
			&lt;string&gt;AR PL UMing HK&lt;/string&gt;
			&lt;string&gt;AR PL ShanHeiSun Uni&lt;/string&gt;
			&lt;string&gt;AR PL New Sung&lt;/string&gt;
			&lt;string&gt;WenQuanYi Bitmap Song&lt;/string&gt;
			&lt;string&gt;AR PL UKai CN&lt;/string&gt;
			&lt;string&gt;AR PL ZenKai Uni&lt;/string&gt;
		&lt;/edit&gt;
	&lt;/match&gt;
	&lt;match target=&quot;pattern&quot;&gt;
		&lt;test qual=&quot;any&quot; name=&quot;family&quot;&gt;
			&lt;string&gt;sans-serif&lt;/string&gt;
		&lt;/test&gt;
		&lt;edit name=&quot;family&quot; mode=&quot;prepend&quot; binding=&quot;strong&quot;&gt;
			&lt;string&gt;DejaVu Sans&lt;/string&gt;
			&lt;string&gt;Bitstream Vera Sans&lt;/string&gt;
			&lt;string&gt;STHeiti&lt;/string&gt;
			&lt;string&gt;Hiragino Sans GB&lt;/string&gt;
			&lt;string&gt;WenQuanYi Micro Hei&lt;/string&gt;
			&lt;string&gt;WenQuanYi Zen Hei&lt;/string&gt;
			&lt;string&gt;Droid Sans Fallback&lt;/string&gt;
			&lt;string&gt;HYSong&lt;/string&gt;
			&lt;string&gt;AR PL UMing CN&lt;/string&gt;
			&lt;string&gt;AR PL UMing HK&lt;/string&gt;
			&lt;string&gt;AR PL ShanHeiSun Uni&lt;/string&gt;
			&lt;string&gt;AR PL New Sung&lt;/string&gt;
			&lt;string&gt;AR PL UKai CN&lt;/string&gt;
			&lt;string&gt;AR PL ZenKai Uni&lt;/string&gt;
		&lt;/edit&gt;
	&lt;/match&gt;
	&lt;match target=&quot;pattern&quot;&gt;
		&lt;test qual=&quot;any&quot; name=&quot;family&quot;&gt;
			&lt;string&gt;monospace&lt;/string&gt;
		&lt;/test&gt;
		&lt;edit name=&quot;family&quot; mode=&quot;prepend&quot; binding=&quot;strong&quot;&gt;
			&lt;string&gt;DejaVu Sans Mono&lt;/string&gt;
			&lt;string&gt;Bitstream Vera Sans Mono&lt;/string&gt;
			&lt;string&gt;STHeiti&lt;/string&gt;
			&lt;string&gt;Hiragino Sans GB&lt;/string&gt;
			&lt;string&gt;WenQuanYi Micro Hei Mono&lt;/string&gt;
			&lt;string&gt;WenQuanYi Zen Hei Mono&lt;/string&gt;
			&lt;string&gt;Droid Sans Fallback&lt;/string&gt;
			&lt;string&gt;HYSong&lt;/string&gt;
			&lt;string&gt;AR PL UMing CN&lt;/string&gt;
			&lt;string&gt;AR PL UMing HK&lt;/string&gt;
			&lt;string&gt;AR PL ShanHeiSun Uni&lt;/string&gt;
			&lt;string&gt;AR PL New Sung&lt;/string&gt;
			&lt;string&gt;AR PL UKai CN&lt;/string&gt;
			&lt;string&gt;AR PL ZenKai Uni&lt;/string&gt;
		&lt;/edit&gt;
	&lt;/match&gt; 

&lt;/fontconfig&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.xmxsuperstar.com/archives/565/linux-font-config-sample.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu 8.04 gnome-terminal 字体渲染问题</title>
		<link>http://www.xmxsuperstar.com/archives/510/ubuntu-8-04-gnome-terminal-%e5%ad%97%e4%bd%93%e6%b8%b2%e6%9f%93%e9%97%ae%e9%a2%98.html</link>
		<comments>http://www.xmxsuperstar.com/archives/510/ubuntu-8-04-gnome-terminal-%e5%ad%97%e4%bd%93%e6%b8%b2%e6%9f%93%e9%97%ae%e9%a2%98.html#comments</comments>
		<pubDate>Sat, 30 Jan 2010 13:46:50 +0000</pubDate>
		<dc:creator>邪恶的小星星</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.xmxsuperstar.com/?p=510</guid>
		<description><![CDATA[在《Ubuntu终端gnome-terminal字体难看的解决办法》提到gnome terminal的字体渲染不受Appearance里字体面板的控制，今天发现在ubuntu 8.04.4里这个bug依旧，其实那篇blog中的解决办法很丑陋，只要在/etc/fonts/conf.d/目录下删掉10-hinting-slight.conf和10-no-sub-pixel.conf，然后重新做两个软链接就可以了： 最后抱怨一下，firefox不接受Appearance里字体面板的控制也就罢了，像gnome-terminal本身就属于gnome的东西都不接受控制实在有些莫名奇妙]]></description>
			<content:encoded><![CDATA[<p>在<a href="http://www.xmxsuperstar.com/archives/313/ubuntu%E7%BB%88%E7%AB%AFgnome-terminal%E5%AD%97%E4%BD%93%E9%9A%BE%E7%9C%8B%E7%9A%84%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95.html">《Ubuntu终端gnome-terminal字体难看的解决办法》</a>提到gnome terminal的字体渲染不受Appearance里字体面板的控制，今天发现在ubuntu 8.04.4里这个bug依旧，其实那篇blog中的解决办法很丑陋，只要在/etc/fonts/conf.d/目录下删掉10-hinting-slight.conf和10-no-sub-pixel.conf，然后重新做两个软链接就可以了：</p>
<pre class="brush: bash; title: ; notranslate">
10-hinting-full.conf -&gt; ../conf.avail/10-hinting-full.conf
10-sub-pixel-rgb.conf -&gt; ../conf.avail/10-sub-pixel-rgb.conf
</pre>
<p>最后抱怨一下，<a href="http://www.xmxsuperstar.com/archives/489/ubuntu-8-04-hardy-%e4%bb%8e%e6%ba%90%e7%a0%81%e7%bc%96%e8%af%91%e5%ae%89%e8%a3%85firefox%e8%a7%a3%e5%86%b3%e5%ad%97%e4%bd%93%e6%b8%b2%e6%9f%93%e9%97%ae%e9%a2%98.html">firefox不接受Appearance里字体面板的控制</a>也就罢了，像gnome-terminal本身就属于gnome的东西都不接受控制实在有些莫名奇妙</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmxsuperstar.com/archives/510/ubuntu-8-04-gnome-terminal-%e5%ad%97%e4%bd%93%e6%b8%b2%e6%9f%93%e9%97%ae%e9%a2%98.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>修改VC6中源代码的字体</title>
		<link>http://www.xmxsuperstar.com/archives/315/%e4%bf%ae%e6%94%b9vc6%e4%b8%ad%e6%ba%90%e4%bb%a3%e7%a0%81%e7%9a%84%e5%ad%97%e4%bd%93.html</link>
		<comments>http://www.xmxsuperstar.com/archives/315/%e4%bf%ae%e6%94%b9vc6%e4%b8%ad%e6%ba%90%e4%bb%a3%e7%a0%81%e7%9a%84%e5%ad%97%e4%bd%93.html#comments</comments>
		<pubDate>Wed, 14 Jan 2009 15:22:10 +0000</pubDate>
		<dc:creator>邪恶的小星星</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[font]]></category>

		<guid isPermaLink="false">http://www.xmxsuperstar.com/?p=315</guid>
		<description><![CDATA[最近很无奈的要用VC6环境编程，但是VC6源代码默认使用的Fixedsys字体简直让我抓狂。但是VC6的选项里面可以选择使用的字体只有那么有限的几个，比如Courier New，Consolas就没有，没办法只好改注册表： HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format\Source Window 下面改掉FontFace就是了。]]></description>
			<content:encoded><![CDATA[<p>最近很无奈的要用VC6环境编程，但是VC6源代码默认使用的Fixedsys字体简直让我抓狂。但是VC6的选项里面可以选择使用的字体只有那么有限的几个，比如Courier New，Consolas就没有，没办法只好改注册表：</p>
<pre>HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Format\Source Window</pre>
<p>下面改掉FontFace就是了。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmxsuperstar.com/archives/315/%e4%bf%ae%e6%94%b9vc6%e4%b8%ad%e6%ba%90%e4%bb%a3%e7%a0%81%e7%9a%84%e5%ad%97%e4%bd%93.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu终端gnome-terminal字体难看的解决办法</title>
		<link>http://www.xmxsuperstar.com/archives/313/ubuntu%e7%bb%88%e7%ab%afgnome-terminal%e5%ad%97%e4%bd%93%e9%9a%be%e7%9c%8b%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95.html</link>
		<comments>http://www.xmxsuperstar.com/archives/313/ubuntu%e7%bb%88%e7%ab%afgnome-terminal%e5%ad%97%e4%bd%93%e9%9a%be%e7%9c%8b%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95.html#comments</comments>
		<pubDate>Wed, 14 Jan 2009 03:26:40 +0000</pubDate>
		<dc:creator>邪恶的小星星</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.xmxsuperstar.com/?p=313</guid>
		<description><![CDATA[一开始想用文泉驿的正黑等宽字体做终端字体，但是在gnome-terminal中却是无比的难看，一开始以为是文泉驿的正黑没有hitting信息的原因，后来换成Consolas发现在gnome-terminal和firefox中一样也是差距巨大，在gnome-terminal中就像是根本没有进行次像素平滑一样。后来在这里找到了原因和解决办法： 修改:/etc/fonts/conf.d/10-no-sub-pixel.conf 将 &#60;edit name=&#8221;rgba&#8221; mode=&#8221;assign&#8221;&#62;&#60;const&#62;none&#60;/const&#62;&#60;/edit&#62; 改成： &#60;edit name=&#8221;rgba&#8221; mode=&#8221;assign&#8221;&#62;&#60;const&#62;rgb&#60;/const&#62;&#60;/edit&#62;]]></description>
			<content:encoded><![CDATA[<p>一开始想用文泉驿的正黑等宽字体做终端字体，但是在gnome-terminal中却是无比的难看，一开始以为是文泉驿的正黑没有hitting信息的原因，后来换成Consolas发现在gnome-terminal和firefox中一样也是差距巨大，在gnome-terminal中就像是根本没有进行次像素平滑一样。后来在<a href="https://bugs.launchpad.net/gnome-terminal/+bug/190848/comments/20">这里</a>找到了原因和<strong><span style="color: #ff0000;"><a href="http://www.xmxsuperstar.com/archives/510/ubuntu-8-04-gnome-terminal-%e5%ad%97%e4%bd%93%e6%b8%b2%e6%9f%93%e9%97%ae%e9%a2%98.html">解决办法</a></span></strong>：<br />
<del datetime="2010-01-30T13:48:44+00:00"><br />
修改:/etc/fonts/conf.d/10-no-sub-pixel.conf 将</del><br />
<span style="text-decoration: line-through;">&lt;edit name=&#8221;rgba&#8221; mode=&#8221;assign&#8221;&gt;&lt;const&gt;none&lt;/const&gt;&lt;/edit&gt;</span><del datetime="2010-01-30T13:48:44+00:00"><br />
改成：</del><br />
<span style="text-decoration: line-through;">&lt;edit name=&#8221;rgba&#8221; mode=&#8221;assign&#8221;&gt;&lt;const&gt;rgb&lt;/const&gt;&lt;/edit&gt;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmxsuperstar.com/archives/313/ubuntu%e7%bb%88%e7%ab%afgnome-terminal%e5%ad%97%e4%bd%93%e9%9a%be%e7%9c%8b%e7%9a%84%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FontCreator 5.6 简体中文汉化版</title>
		<link>http://www.xmxsuperstar.com/archives/88/fontcreator-56-%e7%ae%80%e4%bd%93%e4%b8%ad%e6%96%87%e6%b1%89%e5%8c%96%e7%89%88.html</link>
		<comments>http://www.xmxsuperstar.com/archives/88/fontcreator-56-%e7%ae%80%e4%bd%93%e4%b8%ad%e6%96%87%e6%b1%89%e5%8c%96%e7%89%88.html#comments</comments>
		<pubDate>Thu, 28 Aug 2008 03:19:28 +0000</pubDate>
		<dc:creator>邪恶的小星星</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[ZZ]]></category>
		<category><![CDATA[font]]></category>

		<guid isPermaLink="false">http://www.xmxsuperstar.com/?p=88</guid>
		<description><![CDATA[原文: http://digidea.blogbus.com/logs/25085697.html 下载地址 : http://www.mediafire.com/?jmm24dhlwyj]]></description>
			<content:encoded><![CDATA[<p>原文: <a href="http://digidea.blogbus.com/logs/25085697.html" target="_blank">http://digidea.blogbus.com/logs/25085697.html</a></p>
<p>下载地址 : <a href="http://www.mediafire.com/?jmm24dhlwyj" target="_blank">http://www.mediafire.com/?jmm24dhlwyj</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xmxsuperstar.com/archives/88/fontcreator-56-%e7%ae%80%e4%bd%93%e4%b8%ad%e6%96%87%e6%b1%89%e5%8c%96%e7%89%88.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

