├── .editorconfig ├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── bib.yaml ├── main.typ └── template.typ /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | ./out 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/README.md -------------------------------------------------------------------------------- /bib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/bib.yaml -------------------------------------------------------------------------------- /main.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/main.typ -------------------------------------------------------------------------------- /template.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/typst-coins-thesis/HEAD/template.typ --------------------------------------------------------------------------------