Skip to main content

Module fontsystem

Module fontsystem 

Source
Expand description

Fonts

Structs§

TfmFontI
See TfmFont.
TfmFontSystem
A font system for .tfm-files, as used by plain TeX, eTeX and pdfTeX for Character=u8

Traits§

Font
A font provides various information about Characters (or, rather, glyphs) in that font. Since in the Stomach every glyph in the output is directly associated with a Font, we clone them a lot, so they should be cheap to clone; e.g. using Rc or Arc is a good idea.
FontSystem
A font system provides Fonts, which in turn provide various information about Characters (or, rather, glyphs) in that font.

Type Aliases§

TfmFont
A Font represented by a .tfm-file, as used by plain TeX, eTeX and pdfTeX for Character=u8; defined as Rc<TfmFontI> for clonability.