├── .github ├── FUNDING.yml └── workflows │ └── run_tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── figures │ ├── anatomy-dark.svg │ ├── anatomy.svg │ ├── anatomy.typ │ ├── demo.typ │ ├── generate-images.sh │ ├── grouping-dark.svg │ ├── grouping.svg │ ├── grouping.typ │ ├── logo.typ │ ├── nonum-dark.svg │ ├── nonum.svg │ ├── nonum.typ │ ├── quick-demo.typ │ ├── table.typ │ ├── table1-dark.svg │ ├── table1.svg │ ├── table2-dark.svg │ ├── table2.svg │ ├── uncertainty-modes.typ │ ├── unit-demo.typ │ └── unit-notation.typ ├── logo.svg └── zero-docs.typ ├── src ├── align-column.typ ├── assertations.typ ├── formatting.typ ├── impl.typ ├── num.typ ├── parsing.typ ├── rounding.typ ├── state.typ ├── units.typ ├── utility.typ ├── zero.typ ├── zi.typ └── ztable.typ ├── tests ├── .gitignore ├── align-column │ ├── ref │ │ └── 1.png │ └── test.typ ├── assertations │ ├── ref │ │ └── 1.png │ └── test.typ ├── extend-zi │ ├── ref │ │ └── 1.png │ ├── test.typ │ └── zi.typ ├── nonum │ ├── ref │ │ └── 1.png │ └── test.typ ├── num │ ├── engineering │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ │ ├── fixed │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ │ ├── identical │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ │ ├── input-formats │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ │ ├── scientific │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ │ ├── self │ │ ├── ref │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ └── test.typ │ └── tight │ │ ├── .gitignore │ │ ├── ref.typ │ │ └── test.typ ├── rtl │ ├── ref │ │ └── 1.png │ └── test.typ ├── table │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ └── test.typ └── zi │ ├── advanced │ ├── ref │ │ └── 1.png │ └── test.typ │ ├── basic │ ├── ref │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ └── 8.png │ └── test.typ │ ├── engineering │ ├── .gitignore │ ├── ref.typ │ └── test.typ │ └── identical │ ├── .gitignore │ ├── ref.typ │ └── test.typ └── typst.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Mc-Zen] 2 | -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/README.md -------------------------------------------------------------------------------- /docs/figures/anatomy-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/anatomy-dark.svg -------------------------------------------------------------------------------- /docs/figures/anatomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/anatomy.svg -------------------------------------------------------------------------------- /docs/figures/anatomy.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/anatomy.typ -------------------------------------------------------------------------------- /docs/figures/demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/demo.typ -------------------------------------------------------------------------------- /docs/figures/generate-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/generate-images.sh -------------------------------------------------------------------------------- /docs/figures/grouping-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/grouping-dark.svg -------------------------------------------------------------------------------- /docs/figures/grouping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/grouping.svg -------------------------------------------------------------------------------- /docs/figures/grouping.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/grouping.typ -------------------------------------------------------------------------------- /docs/figures/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/logo.typ -------------------------------------------------------------------------------- /docs/figures/nonum-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/nonum-dark.svg -------------------------------------------------------------------------------- /docs/figures/nonum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/nonum.svg -------------------------------------------------------------------------------- /docs/figures/nonum.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/nonum.typ -------------------------------------------------------------------------------- /docs/figures/quick-demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/quick-demo.typ -------------------------------------------------------------------------------- /docs/figures/table.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/table.typ -------------------------------------------------------------------------------- /docs/figures/table1-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/table1-dark.svg -------------------------------------------------------------------------------- /docs/figures/table1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/table1.svg -------------------------------------------------------------------------------- /docs/figures/table2-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/table2-dark.svg -------------------------------------------------------------------------------- /docs/figures/table2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/table2.svg -------------------------------------------------------------------------------- /docs/figures/uncertainty-modes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/uncertainty-modes.typ -------------------------------------------------------------------------------- /docs/figures/unit-demo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/unit-demo.typ -------------------------------------------------------------------------------- /docs/figures/unit-notation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/figures/unit-notation.typ -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/zero-docs.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/docs/zero-docs.typ -------------------------------------------------------------------------------- /src/align-column.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/align-column.typ -------------------------------------------------------------------------------- /src/assertations.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/assertations.typ -------------------------------------------------------------------------------- /src/formatting.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/formatting.typ -------------------------------------------------------------------------------- /src/impl.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/impl.typ -------------------------------------------------------------------------------- /src/num.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/num.typ -------------------------------------------------------------------------------- /src/parsing.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/parsing.typ -------------------------------------------------------------------------------- /src/rounding.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/rounding.typ -------------------------------------------------------------------------------- /src/state.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/state.typ -------------------------------------------------------------------------------- /src/units.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/units.typ -------------------------------------------------------------------------------- /src/utility.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/utility.typ -------------------------------------------------------------------------------- /src/zero.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/zero.typ -------------------------------------------------------------------------------- /src/zi.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/zi.typ -------------------------------------------------------------------------------- /src/ztable.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/src/ztable.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/align-column/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/align-column/ref/1.png -------------------------------------------------------------------------------- /tests/align-column/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/align-column/test.typ -------------------------------------------------------------------------------- /tests/assertations/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/assertations/ref/1.png -------------------------------------------------------------------------------- /tests/assertations/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/assertations/test.typ -------------------------------------------------------------------------------- /tests/extend-zi/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/extend-zi/ref/1.png -------------------------------------------------------------------------------- /tests/extend-zi/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/extend-zi/test.typ -------------------------------------------------------------------------------- /tests/extend-zi/zi.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/extend-zi/zi.typ -------------------------------------------------------------------------------- /tests/nonum/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/nonum/ref/1.png -------------------------------------------------------------------------------- /tests/nonum/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/nonum/test.typ -------------------------------------------------------------------------------- /tests/num/engineering/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/engineering/.gitignore -------------------------------------------------------------------------------- /tests/num/engineering/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/engineering/ref.typ -------------------------------------------------------------------------------- /tests/num/engineering/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/engineering/test.typ -------------------------------------------------------------------------------- /tests/num/fixed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/fixed/.gitignore -------------------------------------------------------------------------------- /tests/num/fixed/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/fixed/ref.typ -------------------------------------------------------------------------------- /tests/num/fixed/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/fixed/test.typ -------------------------------------------------------------------------------- /tests/num/identical/.gitignore: -------------------------------------------------------------------------------- 1 | /ref -------------------------------------------------------------------------------- /tests/num/identical/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/identical/ref.typ -------------------------------------------------------------------------------- /tests/num/identical/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/identical/test.typ -------------------------------------------------------------------------------- /tests/num/input-formats/.gitignore: -------------------------------------------------------------------------------- 1 | /ref -------------------------------------------------------------------------------- /tests/num/input-formats/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/input-formats/ref.typ -------------------------------------------------------------------------------- /tests/num/input-formats/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/input-formats/test.typ -------------------------------------------------------------------------------- /tests/num/scientific/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/scientific/.gitignore -------------------------------------------------------------------------------- /tests/num/scientific/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/scientific/ref.typ -------------------------------------------------------------------------------- /tests/num/scientific/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/scientific/test.typ -------------------------------------------------------------------------------- /tests/num/self/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/1.png -------------------------------------------------------------------------------- /tests/num/self/ref/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/10.png -------------------------------------------------------------------------------- /tests/num/self/ref/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/11.png -------------------------------------------------------------------------------- /tests/num/self/ref/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/12.png -------------------------------------------------------------------------------- /tests/num/self/ref/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/13.png -------------------------------------------------------------------------------- /tests/num/self/ref/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/14.png -------------------------------------------------------------------------------- /tests/num/self/ref/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/15.png -------------------------------------------------------------------------------- /tests/num/self/ref/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/16.png -------------------------------------------------------------------------------- /tests/num/self/ref/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/17.png -------------------------------------------------------------------------------- /tests/num/self/ref/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/18.png -------------------------------------------------------------------------------- /tests/num/self/ref/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/19.png -------------------------------------------------------------------------------- /tests/num/self/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/2.png -------------------------------------------------------------------------------- /tests/num/self/ref/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/20.png -------------------------------------------------------------------------------- /tests/num/self/ref/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/21.png -------------------------------------------------------------------------------- /tests/num/self/ref/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/22.png -------------------------------------------------------------------------------- /tests/num/self/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/3.png -------------------------------------------------------------------------------- /tests/num/self/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/4.png -------------------------------------------------------------------------------- /tests/num/self/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/5.png -------------------------------------------------------------------------------- /tests/num/self/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/6.png -------------------------------------------------------------------------------- /tests/num/self/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/7.png -------------------------------------------------------------------------------- /tests/num/self/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/8.png -------------------------------------------------------------------------------- /tests/num/self/ref/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/ref/9.png -------------------------------------------------------------------------------- /tests/num/self/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/self/test.typ -------------------------------------------------------------------------------- /tests/num/tight/.gitignore: -------------------------------------------------------------------------------- 1 | /ref -------------------------------------------------------------------------------- /tests/num/tight/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/tight/ref.typ -------------------------------------------------------------------------------- /tests/num/tight/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/num/tight/test.typ -------------------------------------------------------------------------------- /tests/rtl/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/rtl/ref/1.png -------------------------------------------------------------------------------- /tests/rtl/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/rtl/test.typ -------------------------------------------------------------------------------- /tests/table/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/1.png -------------------------------------------------------------------------------- /tests/table/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/2.png -------------------------------------------------------------------------------- /tests/table/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/3.png -------------------------------------------------------------------------------- /tests/table/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/4.png -------------------------------------------------------------------------------- /tests/table/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/5.png -------------------------------------------------------------------------------- /tests/table/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/6.png -------------------------------------------------------------------------------- /tests/table/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/7.png -------------------------------------------------------------------------------- /tests/table/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/ref/8.png -------------------------------------------------------------------------------- /tests/table/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/table/test.typ -------------------------------------------------------------------------------- /tests/zi/advanced/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/advanced/ref/1.png -------------------------------------------------------------------------------- /tests/zi/advanced/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/advanced/test.typ -------------------------------------------------------------------------------- /tests/zi/basic/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/1.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/2.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/3.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/4.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/5.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/6.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/7.png -------------------------------------------------------------------------------- /tests/zi/basic/ref/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/ref/8.png -------------------------------------------------------------------------------- /tests/zi/basic/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/basic/test.typ -------------------------------------------------------------------------------- /tests/zi/engineering/.gitignore: -------------------------------------------------------------------------------- 1 | ref/ -------------------------------------------------------------------------------- /tests/zi/engineering/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/engineering/ref.typ -------------------------------------------------------------------------------- /tests/zi/engineering/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/engineering/test.typ -------------------------------------------------------------------------------- /tests/zi/identical/.gitignore: -------------------------------------------------------------------------------- 1 | /ref -------------------------------------------------------------------------------- /tests/zi/identical/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/identical/ref.typ -------------------------------------------------------------------------------- /tests/zi/identical/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/tests/zi/identical/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mc-Zen/zero/HEAD/typst.toml --------------------------------------------------------------------------------