PrinceXML appears not to be picking up -light and -medium variations on a font. I am including a weight stack, 100 to 900, as a screenshot including the font "Formata" rendered by Prince and Firefox.
http://www.linotype.com/261363/Formata-family.html
Peculiarly, for the first three weights, Prince drops to Times New Roman instead.
In that Firefox rendering, 100-300 are Formata Light, 400 is Formata, 500 is Formata Medium, and 600-900 are Formata Bold.
I tried referring to Formata-Medium as the font family, to no effect - that caused the expected fallback to Times New Roman, as if there was no font by that name (which there is not.) I also tried the CSS labelled weights to no effect, though they do not appear in this stack because I ran out of screen.
Producing code:
I would like to use Formata Medium - Bold is much too heavy in context. Halp?
http://www.linotype.com/261363/Formata-family.html
Peculiarly, for the first three weights, Prince drops to Times New Roman instead.
In that Firefox rendering, 100-300 are Formata Light, 400 is Formata, 500 is Formata Medium, and 600-900 are Formata Bold.
I tried referring to Formata-Medium as the font family, to no effect - that caused the expected fallback to Times New Roman, as if there was no font by that name (which there is not.) I also tried the CSS labelled weights to no effect, though they do not appear in this stack because I ran out of screen.
Producing code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
ts1, ts2, ts3, ts4, ts5, ts6, ts7, ts8, ts9 { display: block; font-family: formata; font-size: 250%; }
ts1 { font-weight: 100; }
ts2 { font-weight: 200; }
ts3 { font-weight: 300; }
ts4 { font-weight: 400; }
ts5 { font-weight: 500; }
ts6 { font-weight: 600; }
ts7 { font-weight: 700; }
ts8 { font-weight: 800; }
ts9 { font-weight: 900; }
</style>
</head>
<body>
<ts1>100 The quick brown fox</ts1>
<ts2>200 The quick brown fox</ts2>
<ts3>300 The quick brown fox</ts3>
<ts4>400 The quick brown fox</ts4>
<ts5>500 The quick brown fox</ts5>
<ts6>600 The quick brown fox</ts6>
<ts7>700 The quick brown fox</ts7>
<ts8>800 The quick brown fox</ts8>
<ts9>900 The quick brown fox</ts9>
</body>
</html>
I would like to use Formata Medium - Bold is much too heavy in context. Halp?
John Haugeland is http://fullof.bs/
Edited by StoneCypher