In my CSS file I've specified the use of a TeX Gyre font, like so:
and yet, when I build the document with Prince, I get this output:
What's going wrong here, why the use of Times there? How can I find out where that comes from, what text passage causes this?
@font-face {
font-family: textfont;
src: url("/path/to/fonts/texgyretermes-regular.otf");
}
@font-face {
font-family: textfont;
font-style: italic;
src: url("/path/to/fonts/texgyretermes-italic.otf");
}
...
and yet, when I build the document with Prince, I get this output:
prince: Converting document...
prince: used font: TeX Gyre Termes, Regular
prince: used font: Times New Roman, Italic
prince: used font: TeX Gyre Termes, Bold
prince: loading hyphenation patterns: /opt/lib/prince/style/../hyph/hyph-en-us.pat
prince: used font: TeX Gyre Termes, Italic
What's going wrong here, why the use of Times there? How can I find out where that comes from, what text passage causes this?