Module boxworks::ds

source ·
Expand description

Core data structures for the typesetting engine.

This module contains the fundamental data structures for the Boxworks typesetting engine. As in TeX, the Boxworks is based around various lists (horizontal, vertical, etc.) that contains elements (which themselves may be nested lists). The Rust representations of these lists and their elements are defined here.

This module implements the entirety of TeX.2021 part 10, “data structures for boxes and their friends”.

Structs§

  • Specifies material that will be moved out into the surrounding vertical list.
  • A character in a specific font.
  • A discretionary break.
  • A piece of glue.
  • Ratio by which glue should shrink or stretch.
  • A box made from a horizontal list.
  • Vertical material to be inserted.
  • A kern.
  • A ligature.
  • Contents of a user’s \mark text.
  • A penalty.
  • A rule stands for a solid black rectangle.
  • A box made from a vertical list.

Enums§

  • The kind of a glue node.
  • Description of whether the glue should stretch, shrink, or remain rigid.
  • Element of a horizontal list.
  • The kind of a kern node.
  • A marker placed before or after math mode.
  • Element of a vertical list.

Traits§