frabjous wrote:What Unicode blocks are most important to you?
Thanks for replying, mostly extended latin unicode block. But I'd really would like to know how to add them in my tex document. This is what got so far:
Code: Select all
\documentclass[8pt,oneside]{extbook}
\usepackage[paperwidth=88.184mm,paperheight=113.854mm,margin=2mm]{geometry}
\title{Aeneidos}
\author{Vergilius Maron}
\usepackage[latin]{babel}
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\usepackage[T1]{fontenc}
\usepackage{hyperref}
\usepackage[tiny,compact]{titlesec}
\usepackage[absolute]{textpos}
\usepackage{titlesec}
\usepackage{tocloft}
\setlength\cftparskip{-5pt}
\setlength\cftbeforechapskip{10pt}
\setlength\cftaftertoctitleskip{2pt}
\renewcommand\chaptername{LIBER}
\renewcommand{\thechapter}{\Roman{chapter}}
\titleformat{\chapter}[display]
{\bfseries\Large}
{\fileft\MakeUppercase{\chaptertitlename} \Huge\thechapter}
{4ex}
{\titlerule
\vspace{2ex}%
\filcenter}
[\vspace{2ex}%
\titlerule]
\setcounter{secnumdepth}{-1}
All I know is that if I ommit this line
\usepackage[T1]{fontenc} my pdf document has an extremely small font on the e-reader NOOK, and the poem text thrashed.
In my system this my DejaVu list of fonts.
fc-list | grep -i deja
Code: Select all
DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book
DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic
DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold
DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique
DejaVu Sans Mono:style=Bold Oblique
DejaVu Serif:style=Bold Italic
DejaVu Sans:style=Bold Oblique
DejaVu Sans:style=Oblique
DejaVu Sans Mono:style=Oblique
DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique
DejaVu Sans,DejaVu Sans Light:style=ExtraLight
DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book
DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold
DejaVu Sans:style=Bold
DejaVu Sans:style=Book
DejaVu Serif:style=Italic
DejaVu Sans Mono:style=Book
DejaVu Sans Mono:style=Bold
DejaVu Serif:style=Book
DejaVu Serif:style=Bold
The font thingy looks intimidating. With
\usepackage[T1]{fontenc} the font size it's alright however they are too thin and the anti-aliasing gets messed up. I would like a font a little bit thicker to match NOOK's native look on its epub's books.
Also another question. The NOOK can change the font of epubs with three fonts: Amasis, Helvetica Neue and Light Classic. But for pdf's the font option is locked into Amasis and grayed out meaning is not possible to change it.
Amasis is a nice font, however only epubs display nicely rendered fonts. How can I tweak this in LaTeX to achieve wordly rendered fonts?
thanks in advanced.