├── .github └── workflows │ └── build_example.yaml ├── LICENSE ├── README.md ├── assets └── banner.png ├── bib.bib ├── example.pdf ├── example.typ └── haobook ├── lib.typ ├── pages.typ ├── styles.typ └── tools.typ /.github/workflows/build_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/.github/workflows/build_example.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/assets/banner.png -------------------------------------------------------------------------------- /bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/bib.bib -------------------------------------------------------------------------------- /example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/example.pdf -------------------------------------------------------------------------------- /example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/example.typ -------------------------------------------------------------------------------- /haobook/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/haobook/lib.typ -------------------------------------------------------------------------------- /haobook/pages.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/haobook/pages.typ -------------------------------------------------------------------------------- /haobook/styles.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/haobook/styles.typ -------------------------------------------------------------------------------- /haobook/tools.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaN3xus/haobook/HEAD/haobook/tools.typ --------------------------------------------------------------------------------