Code: Select all
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
</fontconfig>
Moderator: Thanas
Code: Select all
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
</fontconfig>
Code: Select all
<?xml version="1.0"?><!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font" >
<edit mode="assign" name="hinting" >
<bool>true</bool>
</edit>
</match>
<match target="font" >
<edit mode="assign" name="hintstyle" >
<const>hintmedium</const>
</edit>
</match>
</fontconfig>
If you're running Ubuntu, enable the multiverse repositories and install the mssttcorefonts package. You can also dump TrueType and OpenType fonts in /usr/share/fonts/truetype as root and then run fc-cache (again, as root) to have the system see it.Dave wrote:Question: Can I take font files from Windows and move them to Linux? It would just be nice to have Time New Roman and such on my Linux box as well as regular Windows.