Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/star-hengxing/typst-xmake

Automated compilation of Typst and pseudo hot reload.
https://github.com/star-hengxing/typst-xmake

typst xmake

Last synced: 3 months ago
JSON representation

Automated compilation of Typst and pseudo hot reload.

Awesome Lists containing this project

README

        

# Typst xmake

Use [xmake](https://github.com/xmake-io/xmake/) as build system to compile [typst](https://github.com/typst/typst) to pdf.

# Getting started

On windows, try

```sh
scoop install xmake typst
```

```sh
xmake
```

After compilation success, you can find your pdf in `build/main.pdf`.

# Live coding

Open the compiled pdf file using your favorite pdf reader, then try

```sh
xmake watch -d src
```

Modifying `src/resume.typ` and save, xmake will automatically recompile.

# Reference

- [typst-cv-template](https://github.com/skyzh/typst-cv-template)