blob: 899db67172e216fbc91da71cb6aa52dcd15a8f34 (
about) (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
Define LilyPond default fonts. Where a character doesn't exist in the
first font listed, the next font listed will be used instead for that
character. Also see scm/font.scm.
-->
<alias binding="strong">
<family>LilyPond Serif</family>
<prefer>
<family>TeX Gyre Schola</family>
<family>DejaVu Serif</family>
</prefer>
<default>
<family>serif</family>
</default>
</alias>
<alias binding="strong">
<family>LilyPond Sans Serif</family>
<prefer>
<family>TeX Gyre Heros</family>
<family>DejaVu Sans</family>
</prefer>
<default>
<family>sans-serif</family>
</default>
</alias>
<alias binding="strong">
<family>LilyPond Monospace</family>
<prefer>
<family>TeX Gyre Cursor</family>
<family>DejaVu Sans Mono</family>
</prefer>
<default>
<family>monospace</family>
</default>
</alias>
</fontconfig>
|