Expand description
Numerical values used in TeX, such as integers and dimensions.
Structs§
- Default
NumSet - The default
NumSetused in plain TeX, usingi32,Dim32andMufor integers, dimensions and mu dimensions, respectively. - Dim32
- A plain TeX dimension, represented as a 32-bit integer in scaled points (sp), where 65536sp = 1pt.
- Mu
- A plain TeX mu dimension, represented as a 32-bit integer analogously to scaled points, i.e.
Mu(65536) = 1mu. (where18mu = 1em). - MuSkip
- A math skip/glue consisting of a
MuDimand optional stretch and shrink components. - Skip
- A skip a.k.a. glue value, i.e. a dimension with optional stretch and shrink components.
Enums§
- MuStretch
Shrink - A stretch/shrink component of a
MuSkip. - Stretch
Shrink - A stretch/shrink component of a
Skip.
Constants§
- DEFAULT_
UNITS - The default units for dimension values used in plain TeX:
- STRETCH_
SHRINK_ UNITS - The units for strech/shrink values:
fil,fillandfilll.
Traits§
- MuDim
- A math dimension; i.e. the base component of an
\mskip - NumSet
- Bundles the various numerical types used in some engine, and converts between them.
- Numeric
- Generalization of integers, dimensions, skips, etc. In particular, provides a
scalemethod to scale all of them by their integer type. - TeXDimen
- A TeX dimension. By default
Dim32. - TeXInt
- A TeX integer. By default
i32.