s

sigfig

@preview

Typst library for rounding numbers with significant figures and measurement uncertainty.

v0.1.0
MIT

Package Information

Last Updated
Disciplines
engineering

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/sigfig:0.1.0

2. Import in your Typst file

Add this to your .typ file:

#import "@preview/sigfig:0.1.0": *

Version History

0.1.0
c415ec8ba3e5...

sigfig

sigfig is a Typst package for rounding numbers with significant figures and measurement uncertainty.

Overview

#import "@preview/sigfig:0.1.0": round, urounds
#import "@preview/unify:0.5.0": num

$ #num(round(98654, 3)) $
$ #num(round(2.8977729e-3, 4)) $
$ #num(round(-.0999, 2)) $
$ #num(urounds(114514.19, 1.98)) $
$ #num(urounds(1234.5678, 0.096)) $

yields

Documentation

round

round is similar to JavaScript's Number.prototype.toPrecision() (ES spec).

#assert(round(114514, 3) == "1.15e5")
#assert(round(1, 5) == "1.0000")
#assert(round(12345, 10) == "12345.00000")
#assert(round(.00000002468, 3) == "2.47e-8")

Note that what is different from the ES spec is that there will be no sign ($+$) if the exponent after e is positive.

uround

uround rounds a number with its uncertainty, and returns a string of both.

#assert(uround(114514, 1919) == "1.15e5+-2e3")
#assert(uround(114514.0, 1.9) == "114514+-2")

urounds

uround rounds a number with its uncertainty, and returns a string of both with the same exponent, if any.

You can use num in unify to display the result.

License

MIT © 2024 OverflowCat (overflow.cat).