mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
Updated README.md for new CLI (#471)
This commit is contained in:
parent
72c7c04a9d
commit
205b9f3f25
15
README.md
15
README.md
@ -123,10 +123,10 @@ the bleeding edge version with `nix run github:typst/typst -- --version`.
|
|||||||
Once you have installed Typst, you can use it like this:
|
Once you have installed Typst, you can use it like this:
|
||||||
```sh
|
```sh
|
||||||
# Creates `file.pdf` in working directory.
|
# Creates `file.pdf` in working directory.
|
||||||
typst file.typ
|
typst compile file.typ
|
||||||
|
|
||||||
# Creates PDF file at the desired path.
|
# Creates PDF file at the desired path.
|
||||||
typst path/to/source.typ path/to/output.pdf
|
typst compile path/to/source.typ path/to/output.pdf
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also watch source files and automatically recompile on changes. This is
|
You can also watch source files and automatically recompile on changes. This is
|
||||||
@ -134,7 +134,16 @@ faster than compiling from scratch each time because Typst has incremental
|
|||||||
compilation.
|
compilation.
|
||||||
```sh
|
```sh
|
||||||
# Watches source files and recompiles on changes.
|
# Watches source files and recompiles on changes.
|
||||||
typst --watch file.typ
|
typst watch file.typ
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also add custom font paths for your project and list all of the discovered fonts:
|
||||||
|
```sh
|
||||||
|
# Adds additional directories to search for fonts.
|
||||||
|
typst --font-path path/to/fonts compile file.typ
|
||||||
|
|
||||||
|
# Lists all of the discovered fonts.
|
||||||
|
typst --font-path path/to/fonts fonts
|
||||||
```
|
```
|
||||||
|
|
||||||
If you prefer an integrated IDE-like experience with autocompletion and instant
|
If you prefer an integrated IDE-like experience with autocompletion and instant
|
||||||
|
Loading…
x
Reference in New Issue
Block a user