I use an open type font with three typographic variants. In CSS I can choose a variant like this:
But this doesn't work with Prince. So I found some hints with prince-opentype and tried this:
But it doesn't work either.
How can I choose a typographic variant in Prince?
@font-face {
font-family: "My Font";
font-feature-settings: "ss01" 1;
}
But this doesn't work with Prince. So I found some hints with prince-opentype and tried this:
@page {
font-variant: prince-opentype("ss01" 1);
}
But it doesn't work either.
How can I choose a typographic variant in Prince?