Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 01-08-2016, 02:11 PM   #1
Psymon
Chief Bohemian Misfit
Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.
 
Psymon's Avatar
 
Posts: 571
Karma: 462964
Join Date: May 2013
Device: iPad, ADE
Embedded fonts & italics

Hey folks! Been quite a while since I did any ebooking, but this past week I thought I'd have a little fun with one, and ran into an odd issue.

I wanted to embed this font into my book...

http://www.1001fonts.com/minya-nouvelle-font.html

...and it's nice that it comes with bold and italic versions, and naturally I want those to be used wherever applicable. And so I embedded the regular, bold and italic versions of the fonts in my CSS...

Code:
@font-face {
    font-family: "minya-reg";
    font-weight: normal;
    font-style: normal;
    src: url("../Fonts/minya-reg.ttf") format("truetype");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
}

@font-face {
    font-family: "minya-bd";
    font-weight: normal;
    font-style: normal;
    src: url("../Fonts/minya-bd.ttf") format("truetype");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
}

@font-face {
    font-family: "minya-it";
    font-weight: normal;
    font-style: normal;
    src: url("../Fonts/minya-it.ttf") format("truetype");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
...and then specified the reg version as my base font..

Code:
html>body {
	font-family: minya-reg, 'Times New Roman', Times, serif;
	font-size: 124%;
}

body {
	font-family: minya-reg, 'Times New Roman', Times, serif;
	font-size: 100%;
	line-height: 138%;
}
...and then specified that when <b> or <i> were used, that the appropriate font would be used, too...

Code:
b {
	font-weight: bold;
	font-family: "minya-bd";}

i {
	font-style: italic;
	font-family: "minya-it";}
}
While I'm working on the book in Sigil, everything seems just fine (as far as I can tell), but when I open it up in ADE, for some reason the italic font doesn't want to load -- although the bold one does just fine -- and so anything in italics comes out instead like Times New Roman (or something).

I've attached here a little test file I made, if you want to take a look at it in ADE or whatever and "see" the problem.

Thanks in advance, once again!
Attached Files
File Type: epub font test.epub (185.0 KB, 248 views)
Psymon is offline   Reply With Quote
Old 01-08-2016, 02:59 PM   #2
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Why don't you specify the italic and bold version with the same font-family name and adjust the font-style and font-weight to correspond with the actual font? That way the reader should pick the right font anyway. So, like this:
Code:
@font-face {
    font-family: "minya";
    font-weight: normal;
    font-style: normal;
    src: url("../Fonts/minya-reg.ttf");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
}

@font-face {
    font-family: "minya";
    font-weight: bold;
    font-style: normal;
    src: url("../Fonts/minya-bd.ttf");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
}

@font-face {
    font-family: "minya";
    font-weight: normal;
    font-style: italic;
    src: url("../Fonts/minya-it.ttf");
    -webkit-hyphens:none;
    -epub-hyphens:none;
    -moz-hyphens:none;
    hyphens:none;
    -moz-font-feature-settings: "hist=1, liga=1, dlig=1";
    -ms-font-feature-settings: "hist", "liga", "dlig";
    -webkit-font-feature-settings: "hist", "liga", "dlig";
    -o-font-feature-settings: "hist", "liga", "dlig";
    font-feature-settings: "hist", "liga", "dlig";
}
You would also not need special settings for the bold and italic tags then.

Also, be aware that some readers will ignore font-family set in the body. Also, in your snippet you forgot a closing }...
Toxaris is offline   Reply With Quote
Old 01-08-2016, 04:27 PM   #3
Psymon
Chief Bohemian Misfit
Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.
 
Psymon's Avatar
 
Posts: 571
Karma: 462964
Join Date: May 2013
Device: iPad, ADE
Quote:
Originally Posted by Toxaris View Post
Why don't you specify the italic and bold version with the same font-family name and adjust the font-style and font-weight to correspond with the actual font? That way the reader should pick the right font anyway.
Because I'm dumb -- or was, but you enlightened me. This is one of those things that I know that I "knew" to do, but it's been so long I forgot.

Quote:
Also, be aware that some readers will ignore font-family set in the body.
I'm not quite sure what you mean. Are you cautioning me that some readers will ignore embedded fonts? Or do you mean there's something wrong with this part of my CSS...

Code:
html>body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 124%;
}

body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 100%;
	line-height: 138%;
}
...(or something somewhere else)?

Thanks for your help!
Psymon is offline   Reply With Quote
Old 01-08-2016, 04:40 PM   #4
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,745
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Code:
@font-face {
    font-family: "minya";
    font-weight: normal;
    font-style: normal;
    src: url("../Fonts/minya-reg.ttf")
}

@font-face {
    font-family: "minya";
    font-weight: bold;
    font-style: normal;
    src: url("../Fonts/minya-bd.ttf")
}

@font-face {
    font-family: "minya";
    font-weight: normal;
    font-style: italic;
    src: url("../Fonts/minya-it.ttf")
}
That gets rid of all the garbage you had and correctly sets the font-family.

Code:
body {
	font-family: "minya";
}
That's all you need. When you make the text italic or bold, it will use the correct font style.

Last edited by JSWolf; 01-09-2016 at 01:38 PM.
JSWolf is offline   Reply With Quote
Old 01-08-2016, 07:52 PM   #5
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,048
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Code:
  font-family: "minya-it";
    font-weight: normal;
    font-style: normal;
Your problem was you said it was a Normal font in your @font
theducks is offline   Reply With Quote
Old 01-08-2016, 08:50 PM   #6
dgatwood
Curmudgeon
dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.dgatwood ought to be getting tired of karma fortunes by now.
 
dgatwood's Avatar
 
Posts: 629
Karma: 1623086
Join Date: Jan 2012
Device: iPad, iPhone, Nook Simple Touch
Quote:
Originally Posted by theducks View Post
Code:
  font-family: "minya-it";
    font-weight: normal;
    font-style: normal;
Your problem was you said it was a Normal font in your @font
This. With Adobe Digital Editions, IIRC, an @font rule only gets matched if the font-weight and font-style properties in the current CSS are a close or exact match for the corresponding values in the font declaration. Otherwise, the @font rule doesn't match, and it falls back to the inherited font from the parent element if applicable, or the default font otherwise.

You could also define the bold tag as using font-weight: normal and the italic tag as using font-style: italic, with the caveat that if the user changes the font, they'd lose all formatting that way.

Last edited by dgatwood; 01-08-2016 at 08:52 PM.
dgatwood is offline   Reply With Quote
Old 01-09-2016, 01:58 AM   #7
Toxaris
Wizard
Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.Toxaris ought to be getting tired of karma fortunes by now.
 
Toxaris's Avatar
 
Posts: 4,520
Karma: 121692313
Join Date: Oct 2009
Location: Heemskerk, NL
Device: PRS-T1, Kobo Touch, Kobo Aura
Quote:
Originally Posted by Psymon View Post
I'm not quite sure what you mean. Are you cautioning me that some readers will ignore embedded fonts? Or do you mean there's something wrong with this part of my CSS...

Code:
html>body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 124%;
}

body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 100%;
	line-height: 138%;
}
...(or something somewhere else)?

Thanks for your help!
Correct, some readers ignore, or used to ignore, a font family set in the html or body tag. IIRC Nook was one, but I could be mistaken for another reader. For those readers you need to add the font-family for the paragrapgh tag for example.
Toxaris is offline   Reply With Quote
Old 01-09-2016, 01:31 PM   #8
Psymon
Chief Bohemian Misfit
Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.
 
Psymon's Avatar
 
Posts: 571
Karma: 462964
Join Date: May 2013
Device: iPad, ADE
A couple replies here...

Quote:
Originally Posted by Toxaris View Post
Correct, some readers ignore, or used to ignore, a font family set in the html or body tag. IIRC Nook was one, but I could be mistaken for another reader. For those readers you need to add the font-family for the paragrapgh tag for example.
Oh, crap, I hate it when someone says something that has me wondering if I should go back and fix up ALL my previous ebooks!

So are you saying it'd be advisable to add in font-family for all my <p> tags, too?

Also, on a separate (but related) note, Woflie wrote...

Quote:
Originally Posted by JSWolf View Post
Code:
body {
	font-family: "minya";
	font-size: 100%;
}
That's all you need. When you make the text italic or bold, it will use the correct font style.
What I had had before was this...

Code:
html>body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 124%;
}

body {
	font-family: minya, 'Times New Roman', Times, serif;
	font-size: 100%;
	line-height: 138%;
}
I actually have no idea now why I included the "html>body..." part (and yes, I also just noticed that my font-sizes don't match -- oops!), but I'm sure I must have gotten that "recommendation" from these forums at some point, i.e. to include both the "body" specs in one CSS as well as "html>body" -- but don't ask me why, though, all I know is that I did that because someone, somewhere, told me to do it that way.

Either way, it certainly doesn't hurt to include both, does it (and then also the font-family attributes for <p>, of course)?
Psymon is offline   Reply With Quote
Old 01-09-2016, 01:38 PM   #9
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,745
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I've a nook STR and it does work with the font-family declared in body in CSS. I think you might have to specify publisher font (or something like that but it's been a while since I used the nook).
JSWolf is offline   Reply With Quote
Old 01-09-2016, 01:39 PM   #10
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,745
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I made a slight mistake. You can also drop the font-size 100% from the body style. It's not needed.
JSWolf is offline   Reply With Quote
Old 01-09-2016, 01:47 PM   #11
Psymon
Chief Bohemian Misfit
Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.Psymon ought to be getting tired of karma fortunes by now.
 
Psymon's Avatar
 
Posts: 571
Karma: 462964
Join Date: May 2013
Device: iPad, ADE
Quote:
Originally Posted by JSWolf View Post
I made a slight mistake. You can also drop the font-size 100% from the body style. It's not needed.
Why is it "not needed"? Do you mean because 100% is effectively redundant, because 100% would be the default anyway? I'm curious because you had included it yourself in your earlier reply, even in the "condensed" version of what I originally had.

And actually, for this particular book I wanted the font to be 124%, so isn't that where it would go?

Y'know, it's crazy, I've been doing web design since the mid-1990s, and I've been ebooking (off and on) for several years now, and it never ceases to amaze me how clueless I can be about the most utterly simple things sometimes. :/
Psymon is offline   Reply With Quote
Old 01-09-2016, 03:05 PM   #12
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,048
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
I find that there are lots of redundant codes being used and I assumed that it was just a conversion from Word artifact.

font-size: 100%, 1em (AKA the body font size)
font-weight: normal /*unless in a span that is temporarily dropping the bold */


Wouldn't this work, without the need to modify all the classes? (if minya is the default for most P

p {font-family: "minya", serif; }

.fooclass {font-family: monospace; font-weight: bold; margin: 2em;}
theducks is offline   Reply With Quote
Old 01-09-2016, 04:56 PM   #13
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,745
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Psymon View Post
Why is it "not needed"? Do you mean because 100% is effectively redundant, because 100% would be the default anyway? I'm curious because you had included it yourself in your earlier reply, even in the "condensed" version of what I originally had.

And actually, for this particular book I wanted the font to be 124%, so isn't that where it would go?

Y'know, it's crazy, I've been doing web design since the mid-1990s, and I've been ebooking (off and on) for several years now, and it never ceases to amaze me how clueless I can be about the most utterly simple things sometimes. :/
I've since edited my post and removed the 100%. It is not needed. You may have wanted 124%, but you put in 100%. You don't want 124% either. You use option to change the font size. You cannot guarantee that others won't change the font szie, so you set the font at the default size and set other fonts size in relation to 1em.
JSWolf is offline   Reply With Quote
Old 01-09-2016, 05:00 PM   #14
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,745
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by theducks View Post
p {font-family: "minya", serif; }
, serif is not needed.
JSWolf is offline   Reply With Quote
Old 01-09-2016, 05:36 PM   #15
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,048
Karma: 60358908
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by JSWolf View Post
, serif is not needed.
Fallback is a good idea unless you are 100% positive your font request will be honored
theducks is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Calibre has a serious bug with KF8 & embedded fonts JSWolf Conversion 4 07-08-2012 10:26 PM
Embedded fonts on KF8 & Kindle Touch dbh2ppa Amazon Kindle 5 04-27-2012 09:41 PM
Sigil & Embedded Fonts Danger Sigil 3 12-18-2010 09:57 PM
iPad iBooks, ePub, embedded fonts & encryption pdurrant Apple Devices 37 06-08-2010 01:24 PM
Using embedded fonts with italics only sherman Calibre 2 06-27-2009 04:32 AM


All times are GMT -4. The time now is 02:28 PM.


MobileRead.com is a privately owned, operated and funded community.