Quote:
Originally Posted by Barty
"Helvetica Neue LT" (don't enter the quotes), but my firmware is older. BTW, you may want to test your font by overriding "Baskerville" first and when that works fine you can override Helevetica with it.
|
Actually, I just want to increase Helvetica's size. Maybe it's not the prettiest font but to me it's easier on the eyes generally while keeping nice stroke "proportions" or whatever they're called. I did it with this:
Code:
<fontconfig>
<!-- Make Helvetica 3% bigger -->
<match target="font">
<test name="family" compare="eq">
<string>Helvetica Neue LT</string>
</test>
<!-- So tweak the matrix instead... -->
<edit name="matrix" mode="assign">
<times>
<name>matrix</name>
<matrix>
<double>1.03</double>
<double>0.0</double>
<double>0.0</double>
<double>1.03</double>
</matrix>
</times>
</edit>
</match>
</fontconfig>
I wonder though, what are the two
<double>0.0</double> elements in the middle of the matrix for?