LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1923|回复: 16

FC5 用上 Mac OS 中文字体的效果

[复制链接]
发表于 2006-6-9 16:51:55 | 显示全部楼层 |阅读模式
gnome 界面:
http://imgfly.com/files/090606_014812/Screenshot-2.png

Firefox 浏览 Google:
http://imgfly.com/files/090606_014812/Screenshot.png

Firefox 浏览 LinuxSir:
http://imgfly.com/files/090606_014812/Screenshot-1.png

安装方法和其他字体是一样的,但默认的效果并不是最佳效果,需要改下细节,字体首选项里的细节项,平滑选择灰度(重要),微调选择无(非常重要),英文字体我比较喜欢用 Lucida Grande,改下 fonts.conf:

  1. <family>sans-serif</family>
  2.                 <prefer>
复制代码

下面加上一段,
  1. <family>STHeiti</family>    <!-- add by dancemoon -->
复制代码


ok,现在可以到字体首选项里选择你喜欢的英文字体了,中文字体会自动用 STHeiti。

下载地址:
http://www.box.net/public/static/o1ha2z8snt.gz (8.6M)
发表于 2006-6-9 16:57:14 | 显示全部楼层
楼主的英文字体是什么字体,STHeiti的英文字体实在是难看死拉,我又是英文界面,所以不得不忍痛继续用sans!另外,请问楼主的FIREFOX怎么设置的能显示苹果字体的,我怎么设置都不行!不知道是不是因为跟我的locale有关,我喜欢用英文界面,LOCALE一般都是en_US.UTF-8
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-6-9 17:20:34 | 显示全部楼层
Post by wind21st
楼主的英文字体是什么字体,STHeiti的英文字体实在是难看死拉,我又是英文界面,所以不得不忍痛继续用sans!另外,请问楼主的FIREFOX怎么设置的能显示苹果字体的,我怎么设置都不行!不知道是不是因为跟我的locale有关,我喜欢用英文界面,LOCALE一般都是en_US.UTF-8


我的英文字体是 Lucida Grande,可以 Google 到一大堆
其他显示中文的地方,改完 fonts.conf 以后,选择 Lucida Grande 中文就会用 STHeiti 的中文部分了,Firefox 也是一样,默认字体选 Lucida Grande 就可以。
我的系统是中文的。
回复 支持 反对

使用道具 举报

发表于 2006-6-9 17:21:53 | 显示全部楼层
楼主能不能把你的fonts.conf传上来让小弟看看
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-6-9 17:24:45 | 显示全部楼层
Post by wind21st
楼主能不能把你的fonts.conf传上来让小弟看看

默认的只加了一行,<!-- add by dancemoon --> 那行。


  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <!-- /etc/fonts/fonts.conf file to configure system font access -->
  4. <fontconfig>

  5. <!--
  6.         DO NOT EDIT THIS FILE.
  7.         IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
  8.         LOCAL CHANGES BELONG IN 'local.conf'.

  9.         The intent of this standard configuration file is to be adequate for
  10.         most environments.  If you have a reasonably normal environment and
  11.         have found problems with this configuration, they are probably
  12.         things that others will also want fixed.  Please submit any
  13.         problems to the fontconfig bugzilla system located at fontconfig.org

  14.         Note that the normal 'make install' procedure for fontconfig is to
  15.         replace any existing fonts.conf file with the new version.  Place
  16.         any local customizations in local.conf which this file references.

  17.         Keith Packard
  18. -->

  19. <!-- Font directory list -->

  20.         <dir>/usr/share/fonts</dir>
  21.         <dir>/usr/share/X11/fonts/Type1</dir> <dir>/usr/share/X11/fonts/OTF</dir>
  22.         <dir>~/.fonts</dir>

  23. <!--
  24.   Accept deprecated 'mono' alias, replacing it with 'monospace'
  25. -->
  26.         <match target="pattern">
  27.                 <test qual="any" name="family">
  28.                         <string>mono</string>
  29.                 </test>
  30.                 <edit name="family" mode="assign">
  31.                         <string>monospace</string>
  32.                 </edit>
  33.         </match>

  34. <!--
  35.   Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
  36. -->
  37.         <match target="pattern">
  38.                 <test qual="any" name="family">
  39.                         <string>sans serif</string>
  40.                 </test>
  41.                 <edit name="family" mode="assign">
  42.                         <string>sans-serif</string>
  43.                 </edit>
  44.         </match>

  45. <!--
  46.   Accept deprecated 'sans' alias, replacing it with 'sans-serif'
  47. -->
  48.         <match target="pattern">
  49.                 <test qual="any" name="family">
  50.                         <string>sans</string>
  51.                 </test>
  52.                 <edit name="family" mode="assign">
  53.                         <string>sans-serif</string>
  54.                 </edit>
  55.         </match>

  56. <!--
  57.   Mark common families with their generics so we'll get
  58.   something reasonable
  59. -->

  60. <!--
  61.   Serif faces
  62. -->
  63.         <alias>
  64.                 <family>Bitstream Vera Serif</family>
  65.                 <family>Times New Roman</family>
  66.                 <family>Thorndale AMT</family>
  67.                 <family>Times</family>
  68.                 <family>Nimbus Roman No9 L</family>
  69.                 <family>Luxi Serif</family>
  70.                 <family>Sazanami Mincho</family>
  71.                 <family>Kochi Mincho</family>
  72.                 <family>AR PL ZenKai Uni</family>
  73.                 <family>AR PL SungtiL GB</family>
  74.                 <family>AR PL Mingti2L Big5</family>
  75.                 <family>MS 明朝</family>
  76.                 <family>Baekmuk Batang</family>
  77.                 <family>FreeSerif</family>
  78.                 <family>MgOpen Canonica</family>
  79.                 <default><family>serif</family></default>
  80.         </alias>
  81. <!--
  82.   Sans-serif faces
  83. -->
  84.         <alias>
  85.                 <family>Bitstream Vera Sans</family>
  86.                 <family>Helvetica</family>
  87.                 <family>Arial</family>
  88.                 <family>Verdana</family>
  89.                 <family>Albany AMT</family>
  90.                 <family>Nimbus Sans L</family>
  91.                 <family>Luxi Sans</family>
  92.                 <family>Sazanami Gothic</family>
  93.                 <family>Kochi Gothic</family>
  94.                 <family>AR PL ShanHeiSun Uni</family>
  95.                 <family>AR PL KaitiM GB</family>
  96.                 <family>AR PL KaitiM Big5</family>
  97.                 <family>MS ゴシック</family>
  98.                 <family>Baekmuk Dotum</family>
  99.                 <family>SimSun</family>
  100.                 <family>FreeSans</family>
  101.                 <family>MgOpen Modata</family>
  102.                 <default><family>sans-serif</family></default>
  103.         </alias>
  104. <!--
  105.   Monospace faces
  106. -->
  107.         <alias>
  108.                 <family>Bitstream Vera Sans Mono</family>
  109.                 <family>Courier</family>
  110.                 <family>Courier New</family>
  111.                 <family>Andale Mono</family>
  112.                 <family>Luxi Mono</family>
  113.                 <family>Cumberland AMT</family>
  114.                 <family>Nimbus Mono L</family>
  115.                 <family>NSimSun</family>
  116.                 <family>FreeMono</family>
  117.                 <default><family>monospace</family></default>
  118.         </alias>
  119. <!--
  120.   If the font still has no generic name, add sans-serif
  121. -->
  122.         <match target="pattern">
  123.                 <test qual="all" name="family" compare="not_eq">
  124.                         <string>sans-serif</string>
  125.                 </test>
  126.                 <test qual="all" name="family" compare="not_eq">
  127.                         <string>serif</string>
  128.                 </test>
  129.                 <test qual="all" name="family" compare="not_eq">
  130.                         <string>monospace</string>
  131.                 </test>
  132.                 <edit name="family" mode="append_last">
  133.                         <string>sans-serif</string>
  134.                 </edit>
  135.         </match>

  136. <!--
  137.   URW provides metric and shape compatible fonts for these 3 Adobe families.
  138.   -->
  139.         <alias>
  140.           <family>Times</family>
  141.           <accept>
  142.             <family>Nimbus Roman No9 L</family>
  143.             <family>Thorndale AMT</family>
  144.             <family>Times New Roman</family>
  145.           </accept>
  146.         </alias>
  147.         <alias>
  148.           <family>Helvetica</family>
  149.           <accept>
  150.             <family>Nimbus Sans L</family>
  151.             <family>Albany AMT</family>
  152.             <family>Arial</family>
  153.           </accept>
  154.         </alias>
  155.         <alias>
  156.           <family>Courier</family>
  157.           <accept>
  158.             <family>Cumberland AMT</family>
  159.             <family>Courier New</family>
  160.             <family>Nimbus Mono L</family>
  161.           </accept>
  162.         </alias>

  163.         <alias>
  164.           <family>ZapfDingbats</family>
  165.           <accept><family>Dingbats</family></accept>
  166.         </alias>

  167.         <alias>
  168.           <family>Symbol</family>
  169.           <accept><family>Open Symbols L</family></accept>
  170.         </alias>

  171. <!--
  172. AMT provides metric and shape compatible fonts for these three web font
  173. families.
  174. -->
  175.         <alias>
  176.                 <family>Times New Roman</family>
  177.                 <accept>
  178.                         <family>Thorndale AMT</family>
  179.                         <family>Nimbus Roman No9 L</family>
  180.                 </accept>
  181.         </alias>
  182.         <alias>
  183.                 <family>Arial</family>
  184.                 <accept>
  185.                         <family>Albany AMT</family>
  186.                         <family>Nimbus Sans L</family>
  187.                         <family>Arial</family>
  188.                 </accept>
  189.         </alias>
  190.         <alias>
  191.                 <family>Courier New</family>
  192.                 <accept><family>Cumberland AMT</family></accept>
  193.         </alias>

  194. <!--
  195.   Some Asian fonts misadvertise themselves as monospaced when
  196.   in fact they are dual-spaced (half and full).  This makes
  197.   FreeType very confused as it forces all widths to match.
  198.   Undo this magic by disabling the width forcing code -->
  199.         <match target="font">
  200.                 <test name="family"><string>GulimChe</string></test>
  201.                 <edit name="globaladvance"><bool>false</bool></edit>
  202.         </match>

  203.         <match target="font">
  204.                 <test name="family"><string>DotumChe</string></test>
  205.                 <edit name="globaladvance"><bool>false</bool></edit>
  206.         </match>

  207.         <match target="font">
  208.                 <test name="family"><string>BatangChe</string></test>
  209.                 <edit name="globaladvance"><bool>false</bool></edit>
  210.         </match>

  211.         <match target="font">
  212.                 <test name="family"><string>GungsuhChe</string></test>
  213.                 <edit name="globaladvance"><bool>false</bool></edit>
  214.         </match>

  215. <!--
  216.         The Bitstream Vera fonts have GASP entries suggesting that hinting be
  217.         disabled below 8 ppem, but FreeType ignores those, preferring to use
  218.         the data found in the instructed hints.  The initial Vera release
  219.         didn't include the right instructions in the 'prep' table. Fix this
  220.         by disabling hinting manually at smaller sizes (< 8ppem)
  221. -->

  222.         <match target="font">
  223.                 <test name="family">
  224.                         <string>Bitstream Vera Sans</string>
  225.                 </test>
  226.                 <test name="pixelsize" compare="less">
  227.                         <double>7.5</double>
  228.                 </test>
  229.                 <edit name="hinting">
  230.                         <bool>false</bool>
  231.                 </edit>
  232.         </match>

  233.         <match target="font">
  234.                 <test name="family">
  235.                         <string>Bitstream Vera Serif</string>
  236.                 </test>
  237.                 <test name="pixelsize" compare="less">
  238.                         <double>7.5</double>
  239.                 </test>
  240.                 <edit name="hinting">
  241.                         <bool>false</bool>
  242.                 </edit>
  243.         </match>

  244.         <match target="font">
  245.                 <test name="family">
  246.                         <string>Bitstream Vera Sans Mono</string>
  247.                 </test>
  248.                 <test name="pixelsize" compare="less">
  249.                         <double>7.5</double>
  250.                 </test>
  251.                 <edit name="hinting">
  252.                         <bool>false</bool>
  253.                 </edit>
  254.         </match>

  255. <!--
  256.   Load per-user customization file
  257. -->
  258.         <include ignore_missing="yes">~/.fonts.conf</include>

  259. <!--
  260.   Load local system customization file
  261. -->
  262.         <include ignore_missing="yes">conf.d</include>
  263.         <include ignore_missing="yes">local.conf</include>

  264. <!--
  265.   Provide required aliases for standard names
  266. -->
  267.         <alias>
  268.                 <family>serif</family>
  269.                 <prefer>
  270.                         <family>Nimbus Roman No9 L</family>
  271.                         <family>Thorndale AMT</family>
  272.                         <family>Bitstream Vera Serif</family>
  273.                         <family>Times New Roman</family>
  274.                         <family>Luxi Serif</family>
  275.                         <family>Times</family>
  276.                         <family>KacstQura</family>
  277.                         <family>Frank Ruehl CLM</family>
  278.                         <family>Lohit Bengali</family>
  279.                         <family>Lohit Gujarati</family>
  280.                         <family>Lohit Hindi</family>
  281.                         <family>Lohit Punjabi</family>
  282.                         <family>Lohit Tamil</family>
  283.                         <family>Sazanami Mincho</family>
  284.                         <family>Kochi Mincho</family>
  285.                         <family>ZYSong18030</family>
  286.                         <family>MgOpen Canonica</family>
  287.                         <family>FreeSerif</family>
  288.                         <family>AR PL Zenkai Uni</family>
  289.                         <family>AR PL SungtiL GB</family>
  290.                         <family>AR PL Mingti2L Big5</family>
  291.                         <family>MS 明朝</family>
  292.                         <family>Baekmuk Batang</family>
  293.                 </prefer>
  294.         </alias>
  295.         <alias>
  296.                 <family>sans-serif</family>
  297.                 <prefer>
  298.                         <family>STHeiti</family>    <!-- add by dancemoon -->
  299.                         <family>Luxi Sans</family>
  300.                         <family>Albany AMT</family>
  301.                         <family>Bitstream Vera Sans</family>
  302.                         <family>Verdana</family>
  303.                         <family>Arial</family>
  304.                         <family>Nimbus Sans L</family>
  305.                         <family>Helvetica</family>
  306.                           <family>KacstQura</family>
  307.                         <family>Nachlieli</family>
  308.                         <family>Lohit Bengali</family>
  309.                         <family>Lohit Gujarati</family>
  310.                         <family>Lohit Hindi</family>
  311.                         <family>Lohit Punjabi</family>
  312.                         <family>Lohit Tamil</family>
  313.                         <family>Sazanami Gothic</family>
  314.                         <family>Kochi Gothic</family>
  315.                         <family>MS ゴシック</family>
  316.                         <family>MgOpen Modata</family>
  317.                         <family>FreeSans</family>
  318.                         <family>ZYSong18030</family>
  319.                         <family>AR PL ShanHeiSun Uni</family>
  320.                         <family>AR PL SungtiL GB</family>
  321.                         <family>AR PL Mingti2L Big5</family>
  322.                         <family>Baekmuk Gulim</family>
  323.                         <family>SimSun</family>
  324.                 </prefer>
  325.         </alias>
  326.         <alias>
  327.                 <family>monospace</family>
  328.                 <prefer>
  329.                         <family>Luxi Mono</family>
  330.                         <family>Bitstream Vera Sans Mono</family>
  331.                         <family>Andale Mono</family>
  332.                         <family>Courier New</family>
  333.                         <family>Cumberland AMT</family>
  334.                         <family>KacstQura</family>
  335.                         <family>Miriam Mono CLM</family>
  336.                         <family>Lohit Bengali</family>
  337.                         <family>Lohit Gujarati</family>
  338.                         <family>Lohit Hindi</family>
  339.                         <family>Lohit Punjabi</family>
  340.                         <family>Lohit Tamil</family>
  341.                         <family>Nimbus Mono L</family>
  342.                         <family>Courier</family>
  343.                         <family>Sazanami Gothic</family>
  344.                         <family>Kochi Gothic</family>
  345.                         <family>ZYSong18030</family>
  346.                         <family>AR PL ShanHeiSun Uni</family>
  347.                         <family>AR PL SungtiL GB</family>
  348.                         <family>AR PL Mingti2L Big5</family>
  349.                         <family>Baekmuk Gulim</family>
  350.                         <family>FreeMono</family>
  351.                 </prefer>
  352.         </alias>

  353. <!--
  354. Artificial oblique for fonts without an italic or oblique version
  355. -->

  356.         <match target="font">
  357.                 <!-- check to see if the font is roman -->
  358.                 <test name="slant">
  359.                         <const>roman</const>
  360.                 </test>
  361.                 <!-- check to see if the pattern requested non-roman -->
  362.                 <test target="pattern" name="slant" compare="not_eq">
  363.                         <const>roman</const>
  364.                 </test>
  365.                 <!-- multiply the matrix to slant the font -->
  366.                 <edit name="matrix" mode="assign">
  367.                         <times>
  368.                                 <name>matrix</name>
  369.                                 <matrix><double>1</double><double>0.2</double>
  370.                                         <double>0</double><double>1</double>
  371.                                 </matrix>
  372.                         </times>
  373.                 </edit>
  374.                 <!-- pretend the font is oblique now -->
  375.                 <edit name="slant" mode="assign">
  376.                         <const>oblique</const>
  377.                 </edit>
  378.                 <!-- and disable embedded bitmaps for artificial oblique -->
  379.                 <edit name="embeddedbitmap" mode="assign">
  380.                         <bool>false</bool>
  381.                 </edit>
  382.         </match>

  383. <!--
  384. Synthetic emboldening for fonts that do not have bold face available
  385. -->

  386.         <match target="font">
  387.                 <!-- check to see if the font is just regular -->
  388.                 <test name="weight" compare="less_eq">
  389.                         <const>medium</const>
  390.                 </test>
  391.                 <!-- check to see if the pattern requests bold -->
  392.                 <test target="pattern" name="weight" compare="more">
  393.                         <const>medium</const>
  394.                 </test>
  395.                 <!--
  396.                   set the embolden flag
  397.                   needed for applications using cairo, e.g. gucharmap, gedit, ...
  398.                 -->
  399.                 <edit name="embolden" mode="assign">
  400.                         <bool>true</bool>
  401.                 </edit>
  402.                 <!--
  403.                  set weight to bold
  404.                  needed for applications using Xft directly, e.g. Firefox, ...
  405.                 -->
  406.                 <edit name="weight" mode="assign">
  407.                         <const>bold</const>
  408.                 </edit>
  409.         </match>


  410.         <config>
  411. <!--
  412.   These are the default Unicode chars that are expected to be blank
  413.   in fonts.  All other blank chars are assumed to be broken and
  414.   won't appear in the resulting charsets
  415. -->
  416.                 <blank>
  417.                         <int>0x0020</int>        <!-- SPACE -->
  418.                         <int>0x00A0</int>        <!-- NO-BREAK SPACE -->
  419.                         <int>0x00AD</int>        <!-- SOFT HYPHEN -->
  420.                         <int>0x034F</int>        <!-- COMBINING GRAPHEME JOINER -->
  421.                         <int>0x0600</int>        <!-- ARABIC NUMBER SIGN -->
  422.                         <int>0x0601</int>        <!-- ARABIC SIGN SANAH -->
  423.                         <int>0x0602</int>        <!-- ARABIC FOOTNOTE MARKER -->
  424.                         <int>0x0603</int>        <!-- ARABIC SIGN SAFHA -->
  425.                         <int>0x06DD</int>        <!-- ARABIC END OF AYAH -->
  426.                         <int>0x070F</int>        <!-- SYRIAC ABBREVIATION MARK -->
  427.                         <int>0x115F</int>        <!-- HANGUL CHOSEONG FILLER -->
  428.                         <int>0x1160</int>        <!-- HANGUL JUNGSEONG FILLER -->
  429.                         <int>0x1680</int>        <!-- OGHAM SPACE MARK -->
  430.                         <int>0x17B4</int>        <!-- KHMER VOWEL INHERENT AQ -->
  431.                         <int>0x17B5</int>        <!-- KHMER VOWEL INHERENT AA -->
  432.                         <int>0x180E</int>        <!-- MONGOLIAN VOWEL SEPARATOR -->
  433.                         <int>0x2000</int>        <!-- EN QUAD -->
  434.                         <int>0x2001</int>        <!-- EM QUAD -->
  435.                         <int>0x2002</int>        <!-- EN SPACE -->
  436.                         <int>0x2003</int>        <!-- EM SPACE -->
  437.                         <int>0x2004</int>        <!-- THREE-PER-EM SPACE -->
  438.                         <int>0x2005</int>        <!-- FOUR-PER-EM SPACE -->
  439.                         <int>0x2006</int>        <!-- SIX-PER-EM SPACE -->
  440.                         <int>0x2007</int>        <!-- FIGURE SPACE -->
  441.                         <int>0x2008</int>        <!-- PUNCTUATION SPACE -->
  442.                         <int>0x2009</int>        <!-- THIN SPACE -->
  443.                         <int>0x200A</int>        <!-- HAIR SPACE -->
  444.                         <int>0x200B</int>        <!-- ZERO WIDTH SPACE -->
  445.                         <int>0x200C</int>        <!-- ZERO WIDTH NON-JOINER -->
  446.                         <int>0x200D</int>        <!-- ZERO WIDTH JOINER -->
  447.                         <int>0x200E</int>        <!-- LEFT-TO-RIGHT MARK -->
  448.                         <int>0x200F</int>        <!-- RIGHT-TO-LEFT MARK -->
  449.                         <int>0x2028</int>        <!-- LINE SEPARATOR -->
  450.                         <int>0x2029</int>        <!-- PARAGRAPH SEPARATOR -->
  451.                         <int>0x202A</int>        <!-- LEFT-TO-RIGHT EMBEDDING -->
  452.                         <int>0x202B</int>        <!-- RIGHT-TO-LEFT EMBEDDING -->
  453.                         <int>0x202C</int>        <!-- POP DIRECTIONAL FORMATTING -->
  454.                         <int>0x202D</int>        <!-- LEFT-TO-RIGHT OVERRIDE -->
  455.                         <int>0x202E</int>        <!-- RIGHT-TO-LEFT OVERRIDE -->
  456.                         <int>0x202F</int>        <!-- NARROW NO-BREAK SPACE -->
  457.                         <int>0x205F</int>        <!-- MEDIUM MATHEMATICAL SPACE -->
  458.                         <int>0x2060</int>        <!-- WORD JOINER -->
  459.                         <int>0x2061</int>        <!-- FUNCTION APPLICATION -->
  460.                         <int>0x2062</int>        <!-- INVISIBLE TIMES -->
  461.                         <int>0x2063</int>        <!-- INVISIBLE SEPARATOR -->
  462.                         <int>0x206A</int>        <!-- INHIBIT SYMMETRIC SWAPPING -->
  463.                         <int>0x206B</int>        <!-- ACTIVATE SYMMETRIC SWAPPING -->
  464.                         <int>0x206C</int>        <!-- INHIBIT ARABIC FORM SHAPING -->
  465.                         <int>0x206D</int>        <!-- ACTIVATE ARABIC FORM SHAPING -->
  466.                         <int>0x206E</int>        <!-- NATIONAL DIGIT SHAPES -->
  467.                         <int>0x206F</int>        <!-- NOMINAL DIGIT SHAPES -->
  468.                         <int>0x3000</int>        <!-- IDEOGRAPHIC SPACE -->
  469.                         <int>0x3164</int>        <!-- HANGUL FILLER -->
  470.                         <int>0xFEFF</int>        <!-- ZERO WIDTH NO-BREAK SPACE -->
  471.                         <int>0xFFA0</int>        <!-- HALFWIDTH HANGUL FILLER -->
  472.                         <int>0xFFF9</int>        <!-- INTERLINEAR ANNOTATION ANCHOR -->
  473.                         <int>0xFFFA</int>        <!-- INTERLINEAR ANNOTATION SEPARATOR -->
  474.                         <int>0xFFFB</int>        <!-- INTERLINEAR ANNOTATION TERMINATOR -->
  475.                 </blank>
  476. <!--
  477.   Rescan configuration every 30 seconds when FcFontSetList is called
  478. -->
  479.                 <rescan>
  480.                         <int>30</int>
  481.                 </rescan>
  482.         </config>

  483. </fontconfig>
复制代码
回复 支持 反对

使用道具 举报

发表于 2006-6-9 17:27:26 | 显示全部楼层

楼主帮我分析一下

这是我的屏幕的抓图,字体总是不太清晰,不知道为什么

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
回复 支持 反对

使用道具 举报

发表于 2006-6-9 17:30:08 | 显示全部楼层
Mac的GUI字体是华文细黑。
回复 支持 反对

使用道具 举报

发表于 2006-6-9 17:32:17 | 显示全部楼层
Lucida Grande 正在google中,楼主如果知道链接,请帮忙给出一下
回复 支持 反对

使用道具 举报

发表于 2006-6-9 17:42:59 | 显示全部楼层
注意啊,Lucida Grande是有问题的。

http://linuxsir.cn/bbs/showthread.php?t=253707
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-6-9 17:43:54 | 显示全部楼层
Post by wind21st
这是我的屏幕的抓图,字体总是不太清晰,不知道为什么

我的也不太清晰,这个字体就是这样,呵呵。

Post by seamonkey
Mac的GUI字体是华文细黑。

我给的 STHeiti 就是 Mac 的华文细黑。

Post by wind21st
Lucida Grande 正在google中,楼主如果知道链接,请帮忙给出一下

有很多版本,这个是我用的。
http://www.box.net/public/static/np33undcv2.gz
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表