├── .gitignore ├── LICENSE ├── README.md ├── assets ├── cheatpaper.png ├── homework.png └── template.png ├── docs ├── cheatpaper.pdf ├── cheatpaper.typ ├── font-setting.pdf ├── font-setting.typ ├── homework-template.pdf ├── homework-template.typ ├── question-frame.pdf ├── question-frame.typ ├── template.pdf └── template.typ ├── src ├── .gitignore ├── bundles │ └── homework.typ ├── lib.typ ├── styles │ ├── basic.typ │ ├── cheatpaper.typ │ └── homework.typ └── utils │ ├── font.typ │ └── question.typ ├── template └── main.typ ├── thumbnail.png └── typst.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/README.md -------------------------------------------------------------------------------- /assets/cheatpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/assets/cheatpaper.png -------------------------------------------------------------------------------- /assets/homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/assets/homework.png -------------------------------------------------------------------------------- /assets/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/assets/template.png -------------------------------------------------------------------------------- /docs/cheatpaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/cheatpaper.pdf -------------------------------------------------------------------------------- /docs/cheatpaper.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/cheatpaper.typ -------------------------------------------------------------------------------- /docs/font-setting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/font-setting.pdf -------------------------------------------------------------------------------- /docs/font-setting.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/font-setting.typ -------------------------------------------------------------------------------- /docs/homework-template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/homework-template.pdf -------------------------------------------------------------------------------- /docs/homework-template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/homework-template.typ -------------------------------------------------------------------------------- /docs/question-frame.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/question-frame.pdf -------------------------------------------------------------------------------- /docs/question-frame.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/question-frame.typ -------------------------------------------------------------------------------- /docs/template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/template.pdf -------------------------------------------------------------------------------- /docs/template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/docs/template.typ -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /src/bundles/homework.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/bundles/homework.typ -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/lib.typ -------------------------------------------------------------------------------- /src/styles/basic.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/styles/basic.typ -------------------------------------------------------------------------------- /src/styles/cheatpaper.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/styles/cheatpaper.typ -------------------------------------------------------------------------------- /src/styles/homework.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/styles/homework.typ -------------------------------------------------------------------------------- /src/utils/font.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/utils/font.typ -------------------------------------------------------------------------------- /src/utils/question.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/src/utils/question.typ -------------------------------------------------------------------------------- /template/main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/template/main.typ -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/thumbnail.png -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fr4nk1inCs/tyniverse/HEAD/typst.toml --------------------------------------------------------------------------------