q

quonom

@preview

Manually and automatically typeset synthetic division.

v0.1.0
0BSD

Package Information

Last Updated
Categories
componentsvisualization
Disciplines
educationmathematics

1. Get the package

Download the package using the TPIX CLI:

tpix get @preview/quonom:0.1.0

2. Import in your Typst file

Add this to your .typ file:

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

Version History

0.1.0
dfa3c1b7697f...

quonom

A Typst package for polynomial division.

Usage

#import "@preview/quonom:0.1.0": manual-synthdiv, synthdiv

#figure(
	caption: "Manual synthetic division, fill the missing fields by yourself",
	manual-synthdiv(
		(1, -1, -1, 10),
		-2,
		1, -2, -3, 6, 5, -10, 0
	)
) \

#figure(
	caption: "Automatic synthetic division",
	synthdiv(
		(1, -1, -1, 10),
		-2,
	)
)

Etymology

Quonom is a combination of the words quotient and polynomial.

Acknowledgements

I would like to thank the maintainers of the following projects which are used in this package.