Thread: PRS-600 Fonts on the PRS-600
View Single Post
Old 10-31-2009, 06:43 PM   #2
latexsalesman
Enthusiast
latexsalesman doesn't litterlatexsalesman doesn't litter
 
Posts: 39
Karma: 124
Join Date: Nov 2008
Location: Lockport, NY
Device: Pw2 @ Retina Mini
There are many posts on how easy it is to change fonts with Calibre and ePub, which is my favorite format. To sum it make sure that you have a fonts folder in your readers root directory or data directory and use the following code in the extra css portion of Calibre:

@font-face {
font-family:"MinionPro";
font-weight: normal;
font-style: normal;
src:url(res:///Data/fonts/MinionPro-MediumDisp.otf);
}
@font-face {
font-family:"MinionPro";
font-weight: bold;
font-style: normal;
src:url(res:///Data/fonts/MinionPro-SemiboldDisp.otf);
}
@font-face {
font-family:"MinionPro";
font-weight: normal;
font-style: italic;
src:url(res:///Data/fonts/MinionPro-MediumItDisp.otf);
}
@font-face {
font-family:"MinionPro";
font-weight: bold;
font-style: italic;
src:url(res:///Data/fonts/MinionPro-SemiboldIt.otf);
}

body {font-family:"MinionPro", serif;
}

Choose your favorite fonts and go crazy...

I Want to be your LatexSalesMan!!!
latexsalesman is offline   Reply With Quote