├── .github └── workflows │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .typstignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Justfile ├── LICENSE ├── README.md ├── docs ├── bibliography.bib ├── man-style.typ ├── manual.pdf ├── manual.typ ├── template.typ └── thumbnail.typ ├── gallery ├── bibliography.bib ├── example.pdf └── example.typ ├── plugin ├── Cargo.toml └── src │ ├── lib.rs │ ├── model.rs │ ├── model │ └── wrapper.rs │ └── util.rs ├── scripts ├── package ├── setup └── uninstall ├── src ├── alexandria.wasm ├── hayagriva.typ ├── internal.typ ├── lib.typ └── state.typ ├── tests ├── apa-de-full │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── apa-de-partial │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── apa-full │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── apa-partial │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── bibliography.bib ├── canary-ieee │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── custom-ieee │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── details │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── filtered │ ├── .gitignore │ ├── books.bib │ ├── ref.typ │ └── test.typ ├── hayagriva-280 │ ├── .gitignore │ ├── bib.yaml │ ├── not-ref.typ │ ├── ref.typ │ ├── style.csl │ └── test.typ ├── ieee-de-full │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── ieee-de-partial │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── ieee-full │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── ieee-mixed │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── ieee-partial │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── ieee.csl ├── inline │ ├── .gitignore │ ├── ref.typ │ └── test.typ ├── issue-17 │ ├── .gitignore │ ├── ref.typ │ ├── ref │ │ └── 1.png │ ├── refs.bib │ └── test.typ └── test-utils.typ ├── thumbnail-dark.svg ├── thumbnail-light.svg └── typst.toml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /.typstignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/.typstignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/README.md -------------------------------------------------------------------------------- /docs/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/bibliography.bib -------------------------------------------------------------------------------- /docs/man-style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/man-style.typ -------------------------------------------------------------------------------- /docs/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/manual.pdf -------------------------------------------------------------------------------- /docs/manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/manual.typ -------------------------------------------------------------------------------- /docs/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/template.typ -------------------------------------------------------------------------------- /docs/thumbnail.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/docs/thumbnail.typ -------------------------------------------------------------------------------- /gallery/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/gallery/bibliography.bib -------------------------------------------------------------------------------- /gallery/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/gallery/example.pdf -------------------------------------------------------------------------------- /gallery/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/gallery/example.typ -------------------------------------------------------------------------------- /plugin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/plugin/Cargo.toml -------------------------------------------------------------------------------- /plugin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/plugin/src/lib.rs -------------------------------------------------------------------------------- /plugin/src/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/plugin/src/model.rs -------------------------------------------------------------------------------- /plugin/src/model/wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/plugin/src/model/wrapper.rs -------------------------------------------------------------------------------- /plugin/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/plugin/src/util.rs -------------------------------------------------------------------------------- /scripts/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/scripts/package -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/scripts/setup -------------------------------------------------------------------------------- /scripts/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/scripts/uninstall -------------------------------------------------------------------------------- /src/alexandria.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/src/alexandria.wasm -------------------------------------------------------------------------------- /src/hayagriva.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/src/hayagriva.typ -------------------------------------------------------------------------------- /src/internal.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/src/internal.typ -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/src/lib.typ -------------------------------------------------------------------------------- /src/state.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/src/state.typ -------------------------------------------------------------------------------- /tests/apa-de-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-full/.gitignore -------------------------------------------------------------------------------- /tests/apa-de-full/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-full/ref.typ -------------------------------------------------------------------------------- /tests/apa-de-full/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-full/test.typ -------------------------------------------------------------------------------- /tests/apa-de-partial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-partial/.gitignore -------------------------------------------------------------------------------- /tests/apa-de-partial/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-partial/ref.typ -------------------------------------------------------------------------------- /tests/apa-de-partial/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-de-partial/test.typ -------------------------------------------------------------------------------- /tests/apa-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-full/.gitignore -------------------------------------------------------------------------------- /tests/apa-full/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-full/ref.typ -------------------------------------------------------------------------------- /tests/apa-full/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-full/test.typ -------------------------------------------------------------------------------- /tests/apa-partial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-partial/.gitignore -------------------------------------------------------------------------------- /tests/apa-partial/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-partial/ref.typ -------------------------------------------------------------------------------- /tests/apa-partial/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/apa-partial/test.typ -------------------------------------------------------------------------------- /tests/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/bibliography.bib -------------------------------------------------------------------------------- /tests/canary-ieee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/canary-ieee/.gitignore -------------------------------------------------------------------------------- /tests/canary-ieee/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/canary-ieee/ref.typ -------------------------------------------------------------------------------- /tests/canary-ieee/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/canary-ieee/test.typ -------------------------------------------------------------------------------- /tests/custom-ieee/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/custom-ieee/.gitignore -------------------------------------------------------------------------------- /tests/custom-ieee/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/custom-ieee/ref.typ -------------------------------------------------------------------------------- /tests/custom-ieee/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/custom-ieee/test.typ -------------------------------------------------------------------------------- /tests/details/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/details/.gitignore -------------------------------------------------------------------------------- /tests/details/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/details/ref.typ -------------------------------------------------------------------------------- /tests/details/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/details/test.typ -------------------------------------------------------------------------------- /tests/filtered/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/filtered/.gitignore -------------------------------------------------------------------------------- /tests/filtered/books.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/filtered/books.bib -------------------------------------------------------------------------------- /tests/filtered/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/filtered/ref.typ -------------------------------------------------------------------------------- /tests/filtered/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/filtered/test.typ -------------------------------------------------------------------------------- /tests/hayagriva-280/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/.gitignore -------------------------------------------------------------------------------- /tests/hayagriva-280/bib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/bib.yaml -------------------------------------------------------------------------------- /tests/hayagriva-280/not-ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/not-ref.typ -------------------------------------------------------------------------------- /tests/hayagriva-280/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/ref.typ -------------------------------------------------------------------------------- /tests/hayagriva-280/style.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/style.csl -------------------------------------------------------------------------------- /tests/hayagriva-280/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/hayagriva-280/test.typ -------------------------------------------------------------------------------- /tests/ieee-de-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-full/.gitignore -------------------------------------------------------------------------------- /tests/ieee-de-full/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-full/ref.typ -------------------------------------------------------------------------------- /tests/ieee-de-full/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-full/test.typ -------------------------------------------------------------------------------- /tests/ieee-de-partial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-partial/.gitignore -------------------------------------------------------------------------------- /tests/ieee-de-partial/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-partial/ref.typ -------------------------------------------------------------------------------- /tests/ieee-de-partial/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-de-partial/test.typ -------------------------------------------------------------------------------- /tests/ieee-full/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-full/.gitignore -------------------------------------------------------------------------------- /tests/ieee-full/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-full/ref.typ -------------------------------------------------------------------------------- /tests/ieee-full/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-full/test.typ -------------------------------------------------------------------------------- /tests/ieee-mixed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-mixed/.gitignore -------------------------------------------------------------------------------- /tests/ieee-mixed/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-mixed/ref.typ -------------------------------------------------------------------------------- /tests/ieee-mixed/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-mixed/test.typ -------------------------------------------------------------------------------- /tests/ieee-partial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-partial/.gitignore -------------------------------------------------------------------------------- /tests/ieee-partial/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-partial/ref.typ -------------------------------------------------------------------------------- /tests/ieee-partial/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee-partial/test.typ -------------------------------------------------------------------------------- /tests/ieee.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/ieee.csl -------------------------------------------------------------------------------- /tests/inline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/inline/.gitignore -------------------------------------------------------------------------------- /tests/inline/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/inline/ref.typ -------------------------------------------------------------------------------- /tests/inline/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/inline/test.typ -------------------------------------------------------------------------------- /tests/issue-17/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/issue-17/.gitignore -------------------------------------------------------------------------------- /tests/issue-17/ref.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/issue-17/ref.typ -------------------------------------------------------------------------------- /tests/issue-17/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/issue-17/ref/1.png -------------------------------------------------------------------------------- /tests/issue-17/refs.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/issue-17/refs.bib -------------------------------------------------------------------------------- /tests/issue-17/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/issue-17/test.typ -------------------------------------------------------------------------------- /tests/test-utils.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/tests/test-utils.typ -------------------------------------------------------------------------------- /thumbnail-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/thumbnail-dark.svg -------------------------------------------------------------------------------- /thumbnail-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/thumbnail-light.svg -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SillyFreak/typst-alexandria/HEAD/typst.toml --------------------------------------------------------------------------------