diff --git a/en/gnome/docs/faq2.sgml b/en/gnome/docs/faq2.sgml index 8026491857..15379a1c04 100644 --- a/en/gnome/docs/faq2.sgml +++ b/en/gnome/docs/faq2.sgml @@ -1,6 +1,6 @@ - + %gnomeincludes; %includes; @@ -28,10 +28,12 @@
GNOME 2.2 makes use of Xft2 and fontconfig to handle + anti-aliasing. Fontconfig is a very powerful XML-based + font configuration package. You can create a + ~/.fonts.conf file that controls virtually + every aspect of fontconfig. For example, if you do not + want to anti-alias fonts smaller than 16 point, create + a ~/.fonts.conf with the following contents:
+ ++<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> +<fontconfig> + +<match target="font"> + <test name="size" compare="less_eq"> + <double>16</double> + </test> + <edit name="antialias" mode="assign"> + <bool>false</bool> + </edit> +</match> +</fontconfig> ++ +
Refer to fontconfig(3) for more information.
+