Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 930  / 2 Years ago, sun, may 15, 2022, 6:00:20

I'm looking at a website that attempts to display text in the Palatino font. This is not installed on my system. I'm not sure if it's even possible to get it in Linux. (FWIW I have ttf-mscorefonts-installer installed.)



In any case, the fallback font rendered horribly in Firefox, as shown in the screenshot.



palantino in firefox



As you can see, the height of characters vary. For example, in "enslave", the a is shorter than the v. This page renders fine in Chromium. I found an old bug that was supposedly fixed three years ago, so I'm not sure if it's something odd with my system, or just a regression.



How can I fix this problem?



==EDIT==



I already have texlive-fonts-recommendedtexlive-fonts-recommended installed on my system, which supposedly contains Palatino, but I can't find it in Font Manager.


More From » firefox

 Answers
2

As far as I know this is a hinting issue. Try putting this into a new file in ~/.config/fontconfig/conf.d, like 20-autohint.conf:



<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<match target="pattern">
<test name="family">
<string>URW Bookman L</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>URW Chancery L</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>URW Gothic L</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<match target="pattern">
<test name="family">
<string>URW Palladio L</string>
</test>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
</fontconfig>


If you have an older system and this doesn't work try putting it into the file ~/.fonts.conf.


[#29678] Monday, May 16, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
impisaso

Total Points: 423
Total Questions: 106
Total Answers: 104

Location: Virgin Islands (U.S.)
Member since Tue, Feb 2, 2021
3 Years ago
;