View Single Post
Old 05-12-2010, 01:31 AM   #21
Thrasher
Groupie
Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.Thrasher ought to be getting tired of karma fortunes by now.
 
Posts: 156
Karma: 1003934
Join Date: Apr 2010
Location: Canada
Device: Nook Wifi
Seems like a nice tool. What would be nice is if you could add the option of batch embedding of fonts into epubs so foreign characters display properly.
For example adding this to the stylesheet.css file:
Code:
@font-face {
  font-style: italic;
  font-family: 'Liberation', serif, sans-serif;
  font-weight: normal;
  src: url(LiberationSerif-Italic.ttf);
  }
  @font-face {
  font-style: normal;
  font-family: 'Liberation', serif, sans-serif;
  font-weight: normal;
  src: url(LiberationSerif-Regular.ttf);
  }
  @font-face {
  font-style: italic;
  font-family: 'Liberation', serif, sans-serif;
  font-weight: bold;
  src: url(LiberationSerif-BoldItalic.ttf);
  }
  @font-face {
  font-style: normal;
  font-family: 'Liberation', serif, sans-serif;
  font-weight: bold;
  src: url(LiberationSerif-Bold.ttf);
  }
and then copying these fonts into each epub:

LiberationSerif-Regular.ttf
LiberationSerif-Italic.ttf
LiberationSerif-BoldItalic.ttf
LiberationSerif-Bold.ttf

According to this thread
Thrasher is offline   Reply With Quote