Package Information
- Last Updated
- Authors
- Nile Jocson
- Categories
- componentsvisualization
- Disciplines
- educationmathematics
1. Get the package
Download the package using the TPIX CLI:
tpix get @preview/quonom:0.1.02. Import in your Typst file
Add this to your .typ file:
#import "@preview/quonom:0.1.0": *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.