Safe Haskell | None |
---|
Select new font encodings using the fontenc
package.
- fontenc :: PackageName
- data FontEnc
- useencoding :: LaTeXC l => [FontEnc] -> l
Fontenc package
The fontenc
package.
It is recommended to use the useencoding
function
to import it.
Font encodings
useencoding :: LaTeXC l => [FontEnc] -> lSource
In the preamble, select encodings to use in your document. The last one will be the default encoding. Example:
useencoding [T1]
It imports the fontenc
package. In fact:
useencoding xs = usepackage (fmap texy xs) fontenc