├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── doc ├── example.typ └── style.typ ├── gallery ├── venn2.png ├── venn2.typ ├── venn3.png └── venn3.typ ├── justfile ├── manual.pdf ├── manual.typ ├── requirements.json ├── scripts ├── package └── relpaths ├── src ├── lib.typ └── venn.typ ├── tests ├── helper.typ ├── venn2 │ ├── ref │ │ └── 1.png │ └── test.typ └── venn3 │ ├── ref │ └── 1.png │ └── test.typ └── typst.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/README.md -------------------------------------------------------------------------------- /doc/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/doc/example.typ -------------------------------------------------------------------------------- /doc/style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/doc/style.typ -------------------------------------------------------------------------------- /gallery/venn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/gallery/venn2.png -------------------------------------------------------------------------------- /gallery/venn2.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/gallery/venn2.typ -------------------------------------------------------------------------------- /gallery/venn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/gallery/venn3.png -------------------------------------------------------------------------------- /gallery/venn3.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/gallery/venn3.typ -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/justfile -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/manual.pdf -------------------------------------------------------------------------------- /manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/manual.typ -------------------------------------------------------------------------------- /requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/requirements.json -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/relpaths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/scripts/relpaths -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/src/lib.typ -------------------------------------------------------------------------------- /src/venn.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/src/venn.typ -------------------------------------------------------------------------------- /tests/helper.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/tests/helper.typ -------------------------------------------------------------------------------- /tests/venn2/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/tests/venn2/ref/1.png -------------------------------------------------------------------------------- /tests/venn2/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/tests/venn2/test.typ -------------------------------------------------------------------------------- /tests/venn3/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/tests/venn3/ref/1.png -------------------------------------------------------------------------------- /tests/venn3/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/tests/venn3/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-venn/HEAD/typst.toml --------------------------------------------------------------------------------