Thanks for this wonderful plugin but, I had a quick question. What EXACTLY is an embedded font? I understood it to mean any Epubs with fonts referenced at all. For example, I have the LexiDaMa font installed on my Sony reader and, for MOST epubs, when I convert using Calibre, it works, but, every now and then, LexiaDaMa is NOT displayed, which I took to mean that the epub had embedded fonts, however, after using this plugin, for some reason, my selected font (LexiaDaMa) is still not displaying on the problematic Epubs.
Am I doing something wrong? I will cut and paste the "Extra CSS" that I use on every conversion.
@font-face {
font-family: "LexiaDaMa";
font-weight: normal;
font-style: normal;
src: url(res:///Data/fonts/LexiaDaMa.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: bold;
font-style: normal;
src: url(res:///Data/fonts/LexiaDaMa-Bold.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: normal;
font-style: italic;
src: url(res:///Data/fonts/LexiaDaMa-Italic.otf);
}
@font-face {
font-family: "LexiaDaMa";
font-weight: bold;
font-style: italic;
src: url(res:///Data/fonts/LexiaDaMa-BoldItalic.otf);
}
body {
font-family: "LexiaDaMa";
}
|