├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── assets ├── example.svg └── example.typ ├── src ├── lib.typ └── quick-maths.typ ├── tests ├── .gitignore ├── .ignore ├── interactions │ ├── ref │ │ └── 1.png │ └── test.typ ├── shorthands │ ├── ref │ │ └── 1.png │ └── test.typ ├── single │ ├── ref │ │ └── 1.png │ └── test.typ └── template.typ └── typst.toml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/assets/example.svg -------------------------------------------------------------------------------- /assets/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/assets/example.typ -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- 1 | #import "quick-maths.typ": shorthands 2 | -------------------------------------------------------------------------------- /src/quick-maths.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/src/quick-maths.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/.ignore -------------------------------------------------------------------------------- /tests/interactions/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/interactions/ref/1.png -------------------------------------------------------------------------------- /tests/interactions/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/interactions/test.typ -------------------------------------------------------------------------------- /tests/shorthands/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/shorthands/ref/1.png -------------------------------------------------------------------------------- /tests/shorthands/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/shorthands/test.typ -------------------------------------------------------------------------------- /tests/single/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/single/ref/1.png -------------------------------------------------------------------------------- /tests/single/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/single/test.typ -------------------------------------------------------------------------------- /tests/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/tests/template.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EpicEricEE/typst-quick-maths/HEAD/typst.toml --------------------------------------------------------------------------------