TypstDocumentation

float

A floating-point number.

A limited-precision representation of a real number. Typst uses 64 bits to store floats. Wherever a float is expected, you can also pass an integer.

You can convert a value to a float with this type's constructor.

Example

#3.14 \
#1e4 \
#(10 / 4)
Preview

Constructor
Question mark

Converts a value to a float.

#float(false) \
#float(true) \
#float(4) \
#float(40%) \
#float("2.7") \
#float("1e5")
Preview

value
bool or int or float or ratio or str
RequiredPositional
Question mark

The value that should be converted to a float.

Definitions
Question mark

is-nan

Checks if a float is not a number.

In IEEE 754, more than one bit pattern represents a NaN. This function returns true if the float is any of those bit patterns.

self.is-nan(
) -> bool
#float.is-nan(0) \
#float.is-nan(1) \
#float.is-nan(calc.nan)
Preview

is-infinite

Checks if a float is infinite.

For floats, there is positive and negative infinity. This function returns true if the float is either positive or negative infinity.

self.is-infinite(
) -> bool
#float.is-infinite(0) \
#float.is-infinite(1) \
#float.is-infinite(calc.inf)
Preview

signum

Calculates the sign of a floating point number.

self.signum(
) -> float
#(5.0).signum() \
#(-5.0).signum() \
#(0.0).signum() \
Preview