Closed5
Typstを試す
Cargoで入れるときは念のためバージョンを指定しておく。
cargo install --git https://github.com/typst/typst typst-cli --tag v0.11.0
VS Code
Typst LSPを導入する。
Tutorial
Formatter
図表
Caption
表の見出しを上側にする。
#show figure.where(kind: table): set figure.caption(position: top)
Supplement
text
でlang: ja
を指定すると日本語仕様になるが、bibliography
等も日本語仕様になってしまうため個別に指定。
#let tbl(tbl, caption: "") = {
figure(tbl, caption: caption, supplement: "表")
}
#let img(img, caption: "") = {
figure(img, caption: caption, supplement: "図")
}
このスクラップは2024/04/15にクローズされました