Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

49 lignes
1.1 KiB

  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4. <!--
  5. The Bitstream Vera fonts have GASP entries suggesting that hinting be
  6. disabled below 8 ppem, but FreeType ignores those, preferring to use
  7. the data found in the instructed hints. The initial Vera release
  8. didn't include the right instructions in the 'prep' table. Fix this
  9. by disabling hinting manually at smaller sizes (< 8ppem)
  10. -->
  11. <match target="font">
  12. <test name="family">
  13. <string>Bitstream Vera Sans</string>
  14. </test>
  15. <test name="pixelsize" compare="less">
  16. <double>7.5</double>
  17. </test>
  18. <edit name="hinting">
  19. <bool>false</bool>
  20. </edit>
  21. </match>
  22. <match target="font">
  23. <test name="family">
  24. <string>Bitstream Vera Serif</string>
  25. </test>
  26. <test name="pixelsize" compare="less">
  27. <double>7.5</double>
  28. </test>
  29. <edit name="hinting">
  30. <bool>false</bool>
  31. </edit>
  32. </match>
  33. <match target="font">
  34. <test name="family">
  35. <string>Bitstream Vera Sans Mono</string>
  36. </test>
  37. <test name="pixelsize" compare="less">
  38. <double>7.5</double>
  39. </test>
  40. <edit name="hinting">
  41. <bool>false</bool>
  42. </edit>
  43. </match>
  44. </fontconfig>