summaryrefslogtreecommitdiff
path: root/doc/fontconfig-user.html
blob: 41d440df6c3e972d1044f90445dc5214da757acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>fonts-conf</TITLE
><META
NAME="GENERATOR"Done.
NT="Modular DocBook HTML Stylesheet Version 1.79"></HEAD
><BODY
CLASS="REFENTRY"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><H1
><A
NAME="AEN1"
></A
>fonts-conf</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN5"
></A
><H2
>Name</H2
>fonts.conf&nbsp;--&nbsp;Font configuration files</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN8"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>   /etc/fonts/fonts.conf
   /etc/fonts/fonts.dtd
   /etc/fonts/conf.d
   ~/.fonts.conf.d
   ~/.fonts.conf</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN10"
></A
><H2
>Description</H2
><P
>Fontconfig is a library designed to provide system-wide font configuration,
customization and application access.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN13"
></A
><H2
>Functional Overview</H2
><P
>Fontconfig contains two essential modules, the configuration module which
builds an internal configuration from XML files and the matching module
which accepts font patterns and returns the nearest matching font.
  </P
><DIV
CLASS="REFSECT2"
><A
NAME="AEN16"
></A
><H3
>Font Configuration</H3
><P
>The configuration module consists of the FcConfig datatype, libexpat and
FcConfigParse which walks over an XML tree and amends a configuration with
data found within.  From an external perspective, configuration of the
library consists of generating a valid XML tree and feeding that to
FcConfigParse.  The only other mechanism provided to applications for
changing the running configuration is to add fonts and directories to the
list of application-provided font files.  
    </P
><P
>The intent is to make font configurations relatively static, and shared by
as many applications as possible.  It is hoped that this will lead to more
stable font selection when passing names from one application to another.
XML was chosen as a configuration file format because it provides a format
which is easy for external agents to edit while retaining the correct
structure and syntax.
    </P
><P
>Font configuration is separate from font matching; applications needing to
do their own matching can access the available fonts from the library and
perform private matching.  The intent is to permit applications to pick and
choose appropriate functionality from the library instead of forcing them to
choose between this library and a private configuration mechanism.  The hope
is that this will ensure that configuration of fonts for all applications
can be centralized in one place.  Centralizing font configuration will
simplify and regularize font installation and customization.
    </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN21"
></A
><H3
>Font Properties</H3
><P
>While font patterns may contain essentially any properties, there are some
well known properties with associated types.  Fontconfig uses some of these
properties for font matching and font completion.  Others are provided as a
convenience for the applications' rendering mechanism.
    </P
><PRE
CLASS="PROGRAMLISTING"
>  Property        Type    Description
  --------------------------------------------------------------
  family          String  Font family names
  familylang      String  Languages corresponding to each family
  style           String  Font style. Overrides weight and slant
  stylelang       String  Languages corresponding to each style
  fullname        String  Font full names (often includes style)
  fullnamelang    String  Languages corresponding to each fullname
  slant           Int     Italic, oblique or roman
  weight          Int     Light, medium, demibold, bold or black
  size            Double  Point size
  width           Int     Condensed, normal or expanded
  aspect          Double  Stretches glyphs horizontally before hinting
  pixelsize       Double  Pixel size
  spacing         Int     Proportional, dual-width, monospace or charcell
  foundry         String  Font foundry name
  antialias       Bool    Whether glyphs can be antialiased
  hinting         Bool    Whether the rasterizer should use hinting
  hintstyle       Int     Automatic hinting style
  verticallayout  Bool    Use vertical layout
  autohint        Bool    Use autohinter instead of normal hinter
  globaladvance   Bool    Use font global advance data
  file            String  The filename holding the font
  index           Int     The index of the font within the file
  ftface          FT_Face Use the specified FreeType face object
  rasterizer      String  Which rasterizer is in use
  outline         Bool    Whether the glyphs are outlines
  scalable        Bool    Whether glyphs can be scaled
  scale           Double  Scale factor for point-&#62;pixel conversions
  dpi             Double  Target dots per inch
  rgba            Int     unknown, rgb, bgr, vrgb, vbgr,
                          none - subpixel geometry
  lcdfilter       Int     Type of LCD filter
  minspace        Bool    Eliminate leading from line spacing
  charset         CharSet Unicode chars encoded by the font
  lang            String  List of RFC-3066-style languages this
                          font supports
  fontversion     Int     Version number of the font
  capability      String  List of layout capabilities in the font
  embolden        Bool    Rasterizer should synthetically embolden the font
    </PRE
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN25"
></A
><H3
>Font Matching</H3
><P
>Fontconfig performs matching by measuring the distance from a provided
pattern to all of the available fonts in the system.  The closest matching
font is selected.  This ensures that a font will always be returned, but
doesn't ensure that it is anything like the requested pattern.
    </P
><P
> 
Font matching starts with an application constructed pattern.  The desired
attributes of the resulting font are collected together in a pattern.  Each
property of the pattern can contain one or more values; these are listed in
priority order; matches earlier in the list are considered "closer" than
matches later in the list.
    </P
><P
>The initial pattern is modified by applying the list of editing instructions
specific to patterns found in the configuration; each consists of a match
predicate and a set of editing operations.  They are executed in the order
they appeared in the configuration.  Each match causes the associated
sequence of editing operations to be applied.
    </P
><P
>After the pattern has been edited, a sequence of default substitutions are
performed to canonicalize the set of available properties; this avoids the
need for the lower layers to constantly provide default values for various
font properties during rendering.
    </P
><P
>The canonical font pattern is finally matched against all available fonts.
The distance from the pattern to the font is measured for each of several
properties: foundry, charset, family, lang, spacing, pixelsize, style,
slant, weight, antialias, rasterizer and outline.  This list is in priority
order -- results of comparing earlier elements of this list weigh more
heavily than later elements.
    </P
><P
>There is one special case to this rule; family names are split into two
bindings; strong and weak.  Strong family names are given greater precedence
in the match than lang elements while weak family names are given lower
precedence than lang elements.  This permits the document language to drive
font selection when any document specified font is unavailable.
    </P
><P
>The pattern representing that font is augmented to include any properties
found in the pattern but not found in the font itself; this permits the
application to pass rendering instructions or any other data through the
matching system.  Finally, the list of editing instructions specific to
fonts found in the configuration are applied to the pattern.  This modified
pattern is returned to the application.
    </P
><P
>The return value contains sufficient information to locate and rasterize the
font, including the file name, pixel size and other rendering data.  As
none of the information involved pertains to the FreeType library,
applications are free to use any rasterization engine or even to take
the identified font file and access it directly.
    </P
><P
>The match/edit sequences in the configuration are performed in two passes
because there are essentially two different operations necessary -- the
first is to modify how fonts are selected; aliasing families and adding
suitable defaults.  The second is to modify how the selected fonts are
rasterized.  Those must apply to the selected font, not the original pattern
as false matches will often occur.
    </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN36"
></A
><H3
>Font Names</H3
><P
>Fontconfig provides a textual representation for patterns that the library
can both accept and generate.  The representation is in three parts, first a
list of family names, second a list of point sizes and finally a list of
additional properties:
    </P
><PRE
CLASS="PROGRAMLISTING"
>	&lt;families&gt;-&lt;point sizes&gt;:&lt;name1&gt;=&lt;values1&gt;:&lt;name2&gt;=&lt;values2&gt;...
    </PRE
><P
>Values in a list are separated with commas.  The name needn't include either
families or point sizes; they can be elided.  In addition, there are
symbolic constants that simultaneously indicate both a name and a value.
Here are some examples:
    </P
><PRE
CLASS="PROGRAMLISTING"
>  Name                            Meaning
  ----------------------------------------------------------
  Times-12                        12 point Times Roman
  Times-12:bold                   12 point Times Bold
  Courier:italic                  Courier Italic in the default size
  Monospace:matrix=1 .1 0 1       The users preferred monospace font
                                  with artificial obliquing
    </PRE
><P
>The '\', '-', ':' and ',' characters in family names must be preceded by a
'\' character to avoid having them misinterpreted. Similarly, values
containing '\', '=', '_', ':' and ',' must also have them preceded by a
'\' character. The '\' characters are stripped out of the family name and
values as the font name is read.
    </P
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN43"
></A
><H2
>Debugging Applications</H2
><P
>To help diagnose font and applications problems, fontconfig is built with a
large amount of internal debugging left enabled. It is controlled by means
of the FC_DEBUG environment variable. The value of this variable is
interpreted as a number, and each bit within that value controls different
debugging messages.
  </P
><PRE
CLASS="PROGRAMLISTING"
>  Name         Value    Meaning
  ---------------------------------------------------------
  MATCH            1    Brief information about font matching
  MATCHV           2    Extensive font matching information
  EDIT             4    Monitor match/test/edit execution
  FONTSET          8    Track loading of font information at startup
  CACHE           16    Watch cache files being written
  CACHEV          32    Extensive cache file writing information
  PARSE           64    (no longer in use)
  SCAN           128    Watch font files being scanned to build caches
  SCANV          256    Verbose font file scanning information
  MEMORY         512    Monitor fontconfig memory usage
  CONFIG        1024    Monitor which config files are loaded
  LANGSET       2048    Dump char sets used to construct lang values
  OBJTYPES      4096    Display message when value typechecks fail
  </PRE
><P
>Add the value of the desired debug levels together and assign that (in
base 10) to the FC_DEBUG environment variable before running the
application. Output from these statements is sent to stdout.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN48"
></A
><H2
>Lang Tags</H2
><P
>Each font in the database contains a list of languages it supports.  This is
computed by comparing the Unicode coverage of the font with the orthography
of each language.  Languages are tagged using an RFC-3066 compatible naming
and occur in two parts -- the ISO 639 language tag followed a hyphen and then
by the ISO 3166 country code.  The hyphen and country code may be elided.
  </P
><P
>Fontconfig has orthographies for several languages built into the library.
No provision has been made for adding new ones aside from rebuilding the
library.  It currently supports 122 of the 139 languages named in ISO 639-1,
141 of the languages with two-letter codes from ISO 639-2 and another 30
languages with only three-letter codes.  Languages with both two and three
letter codes are provided with only the two letter code.
  </P
><P
>For languages used in multiple territories with radically different
character sets, fontconfig includes per-territory orthographies.  This
includes Azerbaijani, Kurdish, Pashto, Tigrinya and Chinese.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN53"
></A
><H2
>Configuration File Format</H2
><P
>Configuration files for fontconfig are stored in XML format; this
format makes external configuration tools easier to write and ensures that
they will generate syntactically correct configuration files.  As XML
files are plain text, they can also be manipulated by the expert user using
a text editor.
  </P
><P
>The fontconfig document type definition resides in the external entity
"fonts.dtd"; this is normally stored in the default font configuration
directory (/etc/fonts).  Each configuration file should contain the
following structure:
    <PRE
CLASS="PROGRAMLISTING"
>	&lt;?xml version="1.0"?&gt;
	&lt;!DOCTYPE fontconfig SYSTEM "fonts.dtd"&gt;
	&lt;fontconfig&gt;
	...
	&lt;/fontconfig&gt;
    </PRE
>
  </P
><DIV
CLASS="REFSECT2"
><A
NAME="AEN58"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;fontconfig&gt;</TT
></H3
><P
>This is the top level element for a font configuration and can contain
<TT
CLASS="LITERAL"
>&lt;dir&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;cache&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;include&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;match&gt;</TT
> and <TT
CLASS="LITERAL"
>&lt;alias&gt;</TT
> elements in any order.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN67"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;dir&gt;</TT
></H3
><P
>This element contains a directory name which will be scanned for font files
to include in the set of available fonts.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN71"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;cache&gt;</TT
></H3
><P
>This element contains a file name for the per-user cache of font
information.  If it starts with '~', it refers to a file in the users
home directory.  This file is used to hold information about fonts that
isn't present in the per-directory cache files.  It is automatically
maintained by the fontconfig library.  The default for this file 
is ``~/.fonts.cache-<TT
CLASS="LITERAL"
>&lt;version&gt;</TT
>'', where <TT
CLASS="LITERAL"
>&lt;version&gt;</TT
> is the font configuration
file version number (currently 2).
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN77"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;include ignore_missing="no"&gt;</TT
></H3
><P
>This element contains the name of an additional configuration file or
directory.  If a directory, every file within that directory starting with an
ASCII digit (U+0030 - U+0039) and ending with the string ``.conf'' will be processed in sorted order.  When
the XML datatype is traversed by FcConfigParse, the contents of the file(s)
will also be incorporated into the configuration by passing the filename(s) to
FcConfigLoadAndParse.  If 'ignore_missing' is set to "yes" instead of the
default "no", a missing file or directory will elicit no warning message from
the library.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN81"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;config&gt;</TT
></H3
><P
>This element provides a place to consolidate additional configuration
information.  <TT
CLASS="LITERAL"
>&lt;config&gt;</TT
> can contain <TT
CLASS="LITERAL"
>&lt;blank&gt;</TT
> and <TT
CLASS="LITERAL"
>&lt;rescan&gt;</TT
> elements in any
order.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN88"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;blank&gt;</TT
></H3
><P
>Fonts often include "broken" glyphs which appear in the encoding but are
drawn as blanks on the screen.  Within the <TT
CLASS="LITERAL"
>&lt;blank&gt;</TT
> element, place each
Unicode characters which is supposed to be blank in an <TT
CLASS="LITERAL"
>&lt;int&gt;</TT
> element.
Characters outside of this set which are drawn as blank will be elided from
the set of characters supported by the font.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN94"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;rescan&gt;</TT
></H3
><P
>The <TT
CLASS="LITERAL"
>&lt;rescan&gt;</TT
> element holds an <TT
CLASS="LITERAL"
>&lt;int&gt;</TT
> element which indicates the default
interval between automatic checks for font configuration changes.
Fontconfig will validate all of the configuration files and directories and
automatically rebuild the internal datastructures when this interval passes.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN100"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;selectfont&gt;</TT
></H3
><P
>This element is used to black/white list fonts from being listed or matched
against.  It holds acceptfont and rejectfont elements.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN104"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;acceptfont&gt;</TT
></H3
><P
>Fonts matched by an acceptfont element are "whitelisted"; such fonts are
explicitly included in the set of fonts used to resolve list and match
requests; including them in this list protects them from being "blacklisted"
by a rejectfont element.  Acceptfont elements include glob and pattern
elements which are used to match fonts.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN108"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;rejectfont&gt;</TT
></H3
><P
>Fonts matched by an rejectfont element are "blacklisted"; such fonts are
excluded from the set of fonts used to resolve list and match requests as if
they didn't exist in the system.  Rejectfont elements include glob and
pattern elements which are used to match fonts.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN112"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;glob&gt;</TT
></H3
><P
>Glob elements hold shell-style filename matching patterns (including ? and
*) which match fonts based on their complete pathnames.  This can be used to
exclude a set of directories (/usr/share/fonts/uglyfont*), or particular
font file types (*.pcf.gz), but the latter mechanism relies rather heavily
on filenaming conventions which can't be relied upon.  Note that globs
only apply to directories, not to individual fonts.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN116"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;pattern&gt;</TT
></H3
><P
>Pattern elements perform list-style matching on incoming fonts; that is,
they hold a list of elements and associated values.  If all of those
elements have a matching value, then the pattern matches the font.  This can
be used to select fonts based on attributes of the font (scalable, bold,
etc), which is a more reliable mechanism than using file extensions.
Pattern elements include patelt elements.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN120"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;patelt name="property"&gt;</TT
></H3
><P
>Patelt elements hold a single pattern element and list of values.  They must
have a 'name' attribute which indicates the pattern element name.  Patelt
elements include int, double, string, matrix, bool, charset and const
elements.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN124"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;match target="pattern"&gt;</TT
></H3
><P
>This element holds first a (possibly empty) list of <TT
CLASS="LITERAL"
>&lt;test&gt;</TT
> elements and then
a (possibly empty) list of <TT
CLASS="LITERAL"
>&lt;edit&gt;</TT
> elements.  Patterns which match all of the
tests are subjected to all the edits.  If 'target' is set to "font" instead
of the default "pattern", then this element applies to the font name
resulting from a match rather than a font pattern to be matched. If 'target'
is set to "scan", then this element applies when the font is scanned to
build the fontconfig database.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN130"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;test qual="any" name="property" target="default" compare="eq"&gt;</TT
></H3
><P
>This element contains a single value which is compared with the target
('pattern', 'font', 'scan' or 'default') property "property" (substitute any of the property names seen 
above). 'compare' can be one of "eq", "not_eq", "less", "less_eq", "more", or
"more_eq".  'qual' may either be the default, "any", in which case the match
succeeds if any value associated with the property matches the test value, or
"all", in which case all of the values associated with the property must
match the test value.  When used in a &lt;match target="font"&gt; element,
the target= attribute in the &lt;test&gt; element selects between matching
the original pattern or the font.  "default" selects whichever target the
outer &lt;match&gt; element has selected.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN134"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;edit name="property" mode="assign" binding="weak"&gt;</TT
></H3
><P
>This element contains a list of expression elements (any of the value or
operator elements).  The expression elements are evaluated at run-time and
modify the property "property".  The modification depends on whether
"property" was matched by one of the associated <TT
CLASS="LITERAL"
>&lt;test&gt;</TT
> elements, if so, the
modification may affect the first matched value.  Any values inserted into
the property are given the indicated binding ("strong", "weak" or "same")
with "same" binding using the value from the matched pattern element.
'mode' is one of:
    <PRE
CLASS="PROGRAMLISTING"
>  Mode                    With Match              Without Match
  ---------------------------------------------------------------------
  "assign"                Replace matching value  Replace all values
  "assign_replace"        Replace all values      Replace all values
  "prepend"               Insert before matching  Insert at head of list
  "prepend_first"         Insert at head of list  Insert at head of list
  "append"                Append after matching   Append at end of list
  "append_last"           Append at end of list   Append at end of list
    </PRE
>
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN140"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;int&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;double&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;string&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;bool&gt;</TT
></H3
><P
>These elements hold a single value of the indicated type.  <TT
CLASS="LITERAL"
>&lt;bool&gt;</TT
>
elements hold either true or false.  An important limitation exists in
the parsing of floating point numbers -- fontconfig requires that
the mantissa start with a digit, not a decimal point, so insert a leading
zero for purely fractional values (e.g. use 0.5 instead of .5 and -0.5
instead of -.5).
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN148"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;matrix&gt;</TT
></H3
><P
>This element holds the four <TT
CLASS="LITERAL"
>&lt;double&gt;</TT
> elements of an affine
transformation.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN153"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;range&gt;</TT
></H3
><P
>This element holds the two <TT
CLASS="LITERAL"
>&lt;int&gt;</TT
> elements of a range
representation.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN158"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;charset&gt;</TT
></H3
><P
>This element holds at least one <TT
CLASS="LITERAL"
>&lt;int&gt;</TT
> element of
an Unicode code point or more.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN163"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;langset&gt;</TT
></H3
><P
>This element holds at least one <TT
CLASS="LITERAL"
>&lt;string&gt;</TT
> element of
a RFC-3066-style languages or more.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN168"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;name&gt;</TT
></H3
><P
>Holds a property name.  Evaluates to the first value from the property of
the font, not the pattern.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN172"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;const&gt;</TT
></H3
><P
>Holds the name of a constant; these are always integers and serve as
symbolic names for common font values:
    <PRE
CLASS="PROGRAMLISTING"
>  Constant        Property        Value
  -------------------------------------
  thin            weight          0
  extralight      weight          40
  ultralight      weight          40
  light           weight          50
  book            weight          75
  regular         weight          80
  normal          weight          80
  medium          weight          100
  demibold        weight          180
  semibold        weight          180
  bold            weight          200
  extrabold       weight          205
  black           weight          210
  heavy           weight          210
  roman           slant           0
  italic          slant           100
  oblique         slant           110
  ultracondensed  width           50
  extracondensed  width           63
  condensed       width           75
  semicondensed   width           87
  normal          width           100
  semiexpanded    width           113
  expanded        width           125
  extraexpanded   width           150
  ultraexpanded   width           200
  proportional    spacing         0
  dual            spacing         90
  mono            spacing         100
  charcell        spacing         110
  unknown         rgba            0
  rgb             rgba            1
  bgr             rgba            2
  vrgb            rgba            3
  vbgr            rgba            4
  none            rgba            5
  lcdnone         lcdfilter       0
  lcddefault      lcdfilter       1
  lcdlight        lcdfilter       2
  lcdlegacy       lcdfilter       3
  hintnone        hintstyle       0
  hintslight      hintstyle       1
  hintmedium      hintstyle       2
  hintfull        hintstyle       3
    </PRE
>
      </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN177"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;or&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;and&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;plus&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;minus&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;times&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;divide&gt;</TT
></H3
><P
>These elements perform the specified operation on a list of expression
elements.  <TT
CLASS="LITERAL"
>&lt;or&gt;</TT
> and <TT
CLASS="LITERAL"
>&lt;and&gt;</TT
> are boolean, not bitwise.
      </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN188"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;eq&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;not_eq&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;less&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;less_eq&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;more&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;more_eq&gt;</TT
></H3
><P
>These elements compare two values, producing a boolean result.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN197"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;not&gt;</TT
></H3
><P
>Inverts the boolean sense of its one expression element
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN201"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;if&gt;</TT
></H3
><P
>This element takes three expression elements; if the value of the first is
true, it produces the value of the second, otherwise it produces the value
of the third.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN205"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;alias&gt;</TT
></H3
><P
>Alias elements provide a shorthand notation for the set of common match
operations needed to substitute one font family for another.  They contain a
<TT
CLASS="LITERAL"
>&lt;family&gt;</TT
> element followed by optional <TT
CLASS="LITERAL"
>&lt;prefer&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;accept&gt;</TT
> and <TT
CLASS="LITERAL"
>&lt;default&gt;</TT
>
elements.  Fonts matching the <TT
CLASS="LITERAL"
>&lt;family&gt;</TT
> element are edited to prepend the
list of <TT
CLASS="LITERAL"
>&lt;prefer&gt;</TT
>ed families before the matching <TT
CLASS="LITERAL"
>&lt;family&gt;</TT
>, append the
<TT
CLASS="LITERAL"
>&lt;accept&gt;</TT
>able families after the matching <TT
CLASS="LITERAL"
>&lt;family&gt;</TT
> and append the <TT
CLASS="LITERAL"
>&lt;default&gt;</TT
>
families to the end of the family list.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN219"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;family&gt;</TT
></H3
><P
>Holds a single font family name
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN223"
></A
><H3
><TT
CLASS="LITERAL"
>&lt;prefer&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;accept&gt;</TT
>, <TT
CLASS="LITERAL"
>&lt;default&gt;</TT
></H3
><P
>These hold a list of <TT
CLASS="LITERAL"
>&lt;family&gt;</TT
> elements to be used by the <TT
CLASS="LITERAL"
>&lt;alias&gt;</TT
> element.
  </P
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN231"
></A
><H2
>EXAMPLE CONFIGURATION FILE</H2
><DIV
CLASS="REFSECT2"
><A
NAME="AEN233"
></A
><H3
>System configuration file</H3
><P
>This is an example of a system-wide configuration file
    </P
><PRE
CLASS="PROGRAMLISTING"
>&lt;?xml version="1.0"?&gt;
&lt;!DOCTYPE fontconfig SYSTEM "fonts.dtd"&gt;
&lt;!-- /etc/fonts/fonts.conf file to configure system font access --&gt;
&lt;fontconfig&gt;
&lt;!-- 
	Find fonts in these directories
--&gt;
&lt;dir&gt;/usr/share/fonts&lt;/dir&gt;
&lt;dir&gt;/usr/X11R6/lib/X11/fonts&lt;/dir&gt;

&lt;!--
	Accept deprecated 'mono' alias, replacing it with 'monospace'
--&gt;
&lt;match target="pattern"&gt;
	&lt;test qual="any" name="family"&gt;&lt;string&gt;mono&lt;/string&gt;&lt;/test&gt;
	&lt;edit name="family" mode="assign"&gt;&lt;string&gt;monospace&lt;/string&gt;&lt;/edit&gt;
&lt;/match&gt;

&lt;!--
	Names not including any well known alias are given 'sans'
--&gt;
&lt;match target="pattern"&gt;
	&lt;test qual="all" name="family" mode="not_eq"&gt;sans&lt;/test&gt;
	&lt;test qual="all" name="family" mode="not_eq"&gt;serif&lt;/test&gt;
	&lt;test qual="all" name="family" mode="not_eq"&gt;monospace&lt;/test&gt;
	&lt;edit name="family" mode="append_last"&gt;&lt;string&gt;sans&lt;/string&gt;&lt;/edit&gt;
&lt;/match&gt;

&lt;!--
	Load per-user customization file, but don't complain
	if it doesn't exist
--&gt;
&lt;include ignore_missing="yes"&gt;~/.fonts.conf&lt;/include&gt;

&lt;!--
	Load local customization files, but don't complain
	if there aren't any
--&gt;
&lt;include ignore_missing="yes"&gt;conf.d&lt;/include&gt;
&lt;include ignore_missing="yes"&gt;local.conf&lt;/include&gt;

&lt;!--
	Alias well known font names to available TrueType fonts.
	These substitute TrueType faces for similar Type1
	faces to improve screen appearance.
--&gt;
&lt;alias&gt;
	&lt;family&gt;Times&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Times New Roman&lt;/family&gt;&lt;/prefer&gt;
	&lt;default&gt;&lt;family&gt;serif&lt;/family&gt;&lt;/default&gt;
&lt;/alias&gt;
&lt;alias&gt;
	&lt;family&gt;Helvetica&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Arial&lt;/family&gt;&lt;/prefer&gt;
	&lt;default&gt;&lt;family&gt;sans&lt;/family&gt;&lt;/default&gt;
&lt;/alias&gt;
&lt;alias&gt;
	&lt;family&gt;Courier&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Courier New&lt;/family&gt;&lt;/prefer&gt;
	&lt;default&gt;&lt;family&gt;monospace&lt;/family&gt;&lt;/default&gt;
&lt;/alias&gt;

&lt;!--
	Provide required aliases for standard names
	Do these after the users configuration file so that
	any aliases there are used preferentially
--&gt;
&lt;alias&gt;
	&lt;family&gt;serif&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Times New Roman&lt;/family&gt;&lt;/prefer&gt;
&lt;/alias&gt;
&lt;alias&gt;
	&lt;family&gt;sans&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Arial&lt;/family&gt;&lt;/prefer&gt;
&lt;/alias&gt;
&lt;alias&gt;
	&lt;family&gt;monospace&lt;/family&gt;
	&lt;prefer&gt;&lt;family&gt;Andale Mono&lt;/family&gt;&lt;/prefer&gt;
&lt;/alias&gt;
&lt;/fontconfig&gt;
    </PRE
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN237"
></A
><H3
>User configuration file</H3
><P
>This is an example of a per-user configuration file that lives in
~/.fonts.conf
    </P
><PRE
CLASS="PROGRAMLISTING"
>&lt;?xml version="1.0"?&gt;
&lt;!DOCTYPE fontconfig SYSTEM "fonts.dtd"&gt;
&lt;!-- ~/.fonts.conf for per-user font configuration --&gt;
&lt;fontconfig&gt;

&lt;!--
	Private font directory
--&gt;
&lt;dir&gt;~/.fonts&lt;/dir&gt;

&lt;!--
	use rgb sub-pixel ordering to improve glyph appearance on
	LCD screens.  Changes affecting rendering, but not matching
	should always use target="font".
--&gt;
&lt;match target="font"&gt;
	&lt;edit name="rgba" mode="assign"&gt;&lt;const&gt;rgb&lt;/const&gt;&lt;/edit&gt;
&lt;/match&gt;
&lt;/fontconfig&gt;
    </PRE
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN241"
></A
><H2
>Files</H2
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>fonts.conf</I
></SPAN
>
contains configuration information for the fontconfig library
consisting of directories to look at for font information as well as
instructions on editing program specified font patterns before attempting to
match the available fonts.  It is in XML format.
  </P
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>conf.d</I
></SPAN
>
is the conventional name for a directory of additional configuration files
managed by external applications or the local administrator.  The
filenames starting with decimal digits are sorted in lexicographic order
and used as additional configuration files.  All of these files are in XML
format.  The master fonts.conf file references this directory in an 
&lt;include&gt; directive.
  </P
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>fonts.dtd</I
></SPAN
>
is a DTD that describes the format of the configuration files.
  </P
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>~/.fonts.conf.d</I
></SPAN
>
is the conventional name for a per-user directory of (typically
auto-generated) configuration files, although the
actual location is specified in the global fonts.conf file.
  </P
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
>~/.fonts.conf</I
></SPAN
>
is the conventional location for per-user font configuration, although the
actual location is specified in the global fonts.conf file.
  </P
><P
><SPAN
CLASS="emphasis"
><I
CLASS="EMPHASIS"
> ~/.fonts.cache-*</I
></SPAN
>
is the conventional repository of font information that isn't found in the
per-directory caches.  This file is automatically maintained by fontconfig.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN255"
></A
><H2
>See Also</H2
><P
>fc-cat(1), fc-cache(1), fc-list(1), fc-match(1), fc-query(1)
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN258"
></A
><H2
>Version</H2
><P
>Fontconfig version 2.9.0

	    </P
></DIV
></BODY
></HTML
>