I am trying to convert a page that uses TimesNewRomanPSMT like this:
@font-face {
font-family: "Times New Roman";
font-style: normal;
font-weight: normal;
src:local(TimesNewRomanPSMT);
}
This font cannot be embedded, and the result is that the pdf is created with Symbol, regular in it's place. How can I change the font that prince defaults to in this case?
I cannot change the css file, as this is client data.
I have tried, unsuccessfully, to add a stylesheet with this:
@font-face {
font-family: TimesNewRomanPSMT;
src: local("Georgia")
}
This still defaults to Symbol.
@font-face {
font-family: "Times New Roman";
font-style: normal;
font-weight: normal;
src:local(TimesNewRomanPSMT);
}
This font cannot be embedded, and the result is that the pdf is created with Symbol, regular in it's place. How can I change the font that prince defaults to in this case?
I cannot change the css file, as this is client data.
I have tried, unsuccessfully, to add a stylesheet with this:
@font-face {
font-family: TimesNewRomanPSMT;
src: local("Georgia")
}
This still defaults to Symbol.