├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── justfile ├── ttt-exam ├── LICENSE ├── README.md ├── example │ ├── abb1.png │ ├── abb2.png │ ├── abi.typ │ └── logo.jpg ├── lib │ ├── assets │ │ ├── four-leaf-clover.svg │ │ └── lang.toml │ ├── headers.typ │ ├── i18n.typ │ ├── lib.typ │ ├── points.typ │ └── template.typ ├── template │ ├── exam.typ │ └── logo.jpg ├── thumbnail.png └── typst.toml ├── ttt-lists ├── LICENSE ├── README.md ├── lib │ ├── lib.typ │ └── studentlist.typ ├── template │ ├── students.csv │ └── students.typ ├── thumbnail.png └── typst.toml └── ttt-utils ├── LICENSE ├── README.md ├── docs └── docs.typ ├── lib ├── assignments.typ ├── components.typ ├── grading.typ ├── helpers.typ ├── layout.typ ├── lib.typ └── random.typ ├── tests ├── test-assignments.typ └── test-components.typ └── typst.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/justfile -------------------------------------------------------------------------------- /ttt-exam/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/LICENSE -------------------------------------------------------------------------------- /ttt-exam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/README.md -------------------------------------------------------------------------------- /ttt-exam/example/abb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/example/abb1.png -------------------------------------------------------------------------------- /ttt-exam/example/abb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/example/abb2.png -------------------------------------------------------------------------------- /ttt-exam/example/abi.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/example/abi.typ -------------------------------------------------------------------------------- /ttt-exam/example/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/example/logo.jpg -------------------------------------------------------------------------------- /ttt-exam/lib/assets/four-leaf-clover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/assets/four-leaf-clover.svg -------------------------------------------------------------------------------- /ttt-exam/lib/assets/lang.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/assets/lang.toml -------------------------------------------------------------------------------- /ttt-exam/lib/headers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/headers.typ -------------------------------------------------------------------------------- /ttt-exam/lib/i18n.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/i18n.typ -------------------------------------------------------------------------------- /ttt-exam/lib/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/lib.typ -------------------------------------------------------------------------------- /ttt-exam/lib/points.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/points.typ -------------------------------------------------------------------------------- /ttt-exam/lib/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/lib/template.typ -------------------------------------------------------------------------------- /ttt-exam/template/exam.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/template/exam.typ -------------------------------------------------------------------------------- /ttt-exam/template/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/template/logo.jpg -------------------------------------------------------------------------------- /ttt-exam/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/thumbnail.png -------------------------------------------------------------------------------- /ttt-exam/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-exam/typst.toml -------------------------------------------------------------------------------- /ttt-lists/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/LICENSE -------------------------------------------------------------------------------- /ttt-lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/README.md -------------------------------------------------------------------------------- /ttt-lists/lib/lib.typ: -------------------------------------------------------------------------------- 1 | #import "studentlist.typ" -------------------------------------------------------------------------------- /ttt-lists/lib/studentlist.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/lib/studentlist.typ -------------------------------------------------------------------------------- /ttt-lists/template/students.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/template/students.csv -------------------------------------------------------------------------------- /ttt-lists/template/students.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/template/students.typ -------------------------------------------------------------------------------- /ttt-lists/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/thumbnail.png -------------------------------------------------------------------------------- /ttt-lists/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-lists/typst.toml -------------------------------------------------------------------------------- /ttt-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/LICENSE -------------------------------------------------------------------------------- /ttt-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/README.md -------------------------------------------------------------------------------- /ttt-utils/docs/docs.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/docs/docs.typ -------------------------------------------------------------------------------- /ttt-utils/lib/assignments.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/assignments.typ -------------------------------------------------------------------------------- /ttt-utils/lib/components.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/components.typ -------------------------------------------------------------------------------- /ttt-utils/lib/grading.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/grading.typ -------------------------------------------------------------------------------- /ttt-utils/lib/helpers.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/helpers.typ -------------------------------------------------------------------------------- /ttt-utils/lib/layout.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/layout.typ -------------------------------------------------------------------------------- /ttt-utils/lib/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/lib.typ -------------------------------------------------------------------------------- /ttt-utils/lib/random.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/lib/random.typ -------------------------------------------------------------------------------- /ttt-utils/tests/test-assignments.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/tests/test-assignments.typ -------------------------------------------------------------------------------- /ttt-utils/tests/test-components.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/tests/test-components.typ -------------------------------------------------------------------------------- /ttt-utils/typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jomaway/typst-teacher-templates/HEAD/ttt-utils/typst.toml --------------------------------------------------------------------------------