├── .github ├── scripts │ └── render-templates.sh └── workflows │ ├── on-push-bst2csl.yml │ └── on-push.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── colorize-annotations.py ├── cvpr ├── README.md ├── cvpr.typ ├── cvpr2022.typ ├── cvpr2025.typ ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── ieee.csl ├── logo.typ ├── main.bib ├── main.typ └── typst.toml ├── iclr ├── README.md ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── iclr.csl ├── iclr.typ ├── iclr2025.typ ├── logo.typ ├── main.bib ├── main.typ └── typst.toml ├── icml ├── README.md ├── appendix.typ ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── icml-numpapers.svg ├── icml.csl ├── icml.typ ├── icml2024.typ ├── icml2025.typ ├── logo.typ ├── main.bib ├── main.typ └── typst.toml ├── jmlr ├── README.md ├── appendix.typ ├── blindtext.typ ├── format-appendix.typ ├── format.bib ├── format.typ ├── jmlr.pdf ├── jmlr.typ ├── logo.typ ├── main.bib ├── main.typ └── typst.toml ├── neurips ├── README.md ├── appendix.typ ├── checklist.typ ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── logo.typ ├── main.bib ├── main.typ ├── natbib.csl ├── neurips.typ ├── neurips2023.typ ├── neurips2024.typ ├── neurips2025.typ └── typst.toml ├── rlj ├── README.md ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── logo.typ ├── main.bib ├── main.typ ├── rlj.csl ├── rlj.typ ├── supplementary.typ └── typst.toml ├── tmlr ├── README.md ├── appendix.typ ├── example-paper.latex.pdf ├── example-paper.typst.pdf ├── logo.typ ├── main.bib ├── main.typ ├── tmlr.csl ├── tmlr.typ └── typst.toml └── tree-sitter-bst ├── .gitattributes ├── .gitignore ├── README.md ├── corpus ├── corpus.diff ├── corpus.tar.br └── make-corpus.sh ├── grammar.js ├── pyproject.toml ├── setup.py ├── tree-sitter.json └── tree_sitter_bst ├── __init__.py ├── __init__.pyi ├── binding.c └── py.typed /.github/scripts/render-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/.github/scripts/render-templates.sh -------------------------------------------------------------------------------- /.github/workflows/on-push-bst2csl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/.github/workflows/on-push-bst2csl.yml -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/README.md -------------------------------------------------------------------------------- /colorize-annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/colorize-annotations.py -------------------------------------------------------------------------------- /cvpr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/README.md -------------------------------------------------------------------------------- /cvpr/cvpr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/cvpr.typ -------------------------------------------------------------------------------- /cvpr/cvpr2022.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/cvpr2022.typ -------------------------------------------------------------------------------- /cvpr/cvpr2025.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/cvpr2025.typ -------------------------------------------------------------------------------- /cvpr/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/example-paper.latex.pdf -------------------------------------------------------------------------------- /cvpr/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/example-paper.typst.pdf -------------------------------------------------------------------------------- /cvpr/ieee.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/ieee.csl -------------------------------------------------------------------------------- /cvpr/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/logo.typ -------------------------------------------------------------------------------- /cvpr/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/main.bib -------------------------------------------------------------------------------- /cvpr/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/cvpr/main.typ -------------------------------------------------------------------------------- /cvpr/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /iclr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/README.md -------------------------------------------------------------------------------- /iclr/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/example-paper.latex.pdf -------------------------------------------------------------------------------- /iclr/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/example-paper.typst.pdf -------------------------------------------------------------------------------- /iclr/iclr.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/iclr.csl -------------------------------------------------------------------------------- /iclr/iclr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/iclr.typ -------------------------------------------------------------------------------- /iclr/iclr2025.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/iclr2025.typ -------------------------------------------------------------------------------- /iclr/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/logo.typ -------------------------------------------------------------------------------- /iclr/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/main.bib -------------------------------------------------------------------------------- /iclr/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/iclr/main.typ -------------------------------------------------------------------------------- /iclr/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /icml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/README.md -------------------------------------------------------------------------------- /icml/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/appendix.typ -------------------------------------------------------------------------------- /icml/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/example-paper.latex.pdf -------------------------------------------------------------------------------- /icml/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/example-paper.typst.pdf -------------------------------------------------------------------------------- /icml/icml-numpapers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/icml-numpapers.svg -------------------------------------------------------------------------------- /icml/icml.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/icml.csl -------------------------------------------------------------------------------- /icml/icml.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/icml.typ -------------------------------------------------------------------------------- /icml/icml2024.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/icml2024.typ -------------------------------------------------------------------------------- /icml/icml2025.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/icml2025.typ -------------------------------------------------------------------------------- /icml/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/logo.typ -------------------------------------------------------------------------------- /icml/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/main.bib -------------------------------------------------------------------------------- /icml/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/icml/main.typ -------------------------------------------------------------------------------- /icml/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /jmlr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/README.md -------------------------------------------------------------------------------- /jmlr/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/appendix.typ -------------------------------------------------------------------------------- /jmlr/blindtext.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/blindtext.typ -------------------------------------------------------------------------------- /jmlr/format-appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/format-appendix.typ -------------------------------------------------------------------------------- /jmlr/format.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/format.bib -------------------------------------------------------------------------------- /jmlr/format.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/format.typ -------------------------------------------------------------------------------- /jmlr/jmlr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/jmlr.pdf -------------------------------------------------------------------------------- /jmlr/jmlr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/jmlr.typ -------------------------------------------------------------------------------- /jmlr/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/logo.typ -------------------------------------------------------------------------------- /jmlr/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/main.bib -------------------------------------------------------------------------------- /jmlr/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/jmlr/main.typ -------------------------------------------------------------------------------- /jmlr/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /neurips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/README.md -------------------------------------------------------------------------------- /neurips/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/appendix.typ -------------------------------------------------------------------------------- /neurips/checklist.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/checklist.typ -------------------------------------------------------------------------------- /neurips/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/example-paper.latex.pdf -------------------------------------------------------------------------------- /neurips/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/example-paper.typst.pdf -------------------------------------------------------------------------------- /neurips/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/logo.typ -------------------------------------------------------------------------------- /neurips/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/main.bib -------------------------------------------------------------------------------- /neurips/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/main.typ -------------------------------------------------------------------------------- /neurips/natbib.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/natbib.csl -------------------------------------------------------------------------------- /neurips/neurips.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/neurips.typ -------------------------------------------------------------------------------- /neurips/neurips2023.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/neurips2023.typ -------------------------------------------------------------------------------- /neurips/neurips2024.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/neurips2024.typ -------------------------------------------------------------------------------- /neurips/neurips2025.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/neurips/neurips2025.typ -------------------------------------------------------------------------------- /neurips/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /rlj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/README.md -------------------------------------------------------------------------------- /rlj/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/example-paper.latex.pdf -------------------------------------------------------------------------------- /rlj/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/example-paper.typst.pdf -------------------------------------------------------------------------------- /rlj/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/logo.typ -------------------------------------------------------------------------------- /rlj/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/main.bib -------------------------------------------------------------------------------- /rlj/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/main.typ -------------------------------------------------------------------------------- /rlj/rlj.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/rlj.csl -------------------------------------------------------------------------------- /rlj/rlj.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/rlj.typ -------------------------------------------------------------------------------- /rlj/supplementary.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/rlj/supplementary.typ -------------------------------------------------------------------------------- /rlj/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /tmlr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/README.md -------------------------------------------------------------------------------- /tmlr/appendix.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/appendix.typ -------------------------------------------------------------------------------- /tmlr/example-paper.latex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/example-paper.latex.pdf -------------------------------------------------------------------------------- /tmlr/example-paper.typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/example-paper.typst.pdf -------------------------------------------------------------------------------- /tmlr/logo.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/logo.typ -------------------------------------------------------------------------------- /tmlr/main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/main.bib -------------------------------------------------------------------------------- /tmlr/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/main.typ -------------------------------------------------------------------------------- /tmlr/tmlr.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/tmlr.csl -------------------------------------------------------------------------------- /tmlr/tmlr.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tmlr/tmlr.typ -------------------------------------------------------------------------------- /tmlr/typst.toml: -------------------------------------------------------------------------------- 1 | [[document]] 2 | entrypoint = "main.typ" 3 | -------------------------------------------------------------------------------- /tree-sitter-bst/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/.gitattributes -------------------------------------------------------------------------------- /tree-sitter-bst/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/.gitignore -------------------------------------------------------------------------------- /tree-sitter-bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/README.md -------------------------------------------------------------------------------- /tree-sitter-bst/corpus/corpus.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/corpus/corpus.diff -------------------------------------------------------------------------------- /tree-sitter-bst/corpus/corpus.tar.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/corpus/corpus.tar.br -------------------------------------------------------------------------------- /tree-sitter-bst/corpus/make-corpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/corpus/make-corpus.sh -------------------------------------------------------------------------------- /tree-sitter-bst/grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/grammar.js -------------------------------------------------------------------------------- /tree-sitter-bst/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/pyproject.toml -------------------------------------------------------------------------------- /tree-sitter-bst/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/setup.py -------------------------------------------------------------------------------- /tree-sitter-bst/tree-sitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/tree-sitter.json -------------------------------------------------------------------------------- /tree-sitter-bst/tree_sitter_bst/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/tree_sitter_bst/__init__.py -------------------------------------------------------------------------------- /tree-sitter-bst/tree_sitter_bst/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/tree_sitter_bst/__init__.pyi -------------------------------------------------------------------------------- /tree-sitter-bst/tree_sitter_bst/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daskol/typst-templates/HEAD/tree-sitter-bst/tree_sitter_bst/binding.c -------------------------------------------------------------------------------- /tree-sitter-bst/tree_sitter_bst/py.typed: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------