Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

20-unhint-small-vera.conf 1.1 KiB

11 anni fa
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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>