improvement/bold-figure-captions #27

Merged
servostar merged 3 commits from improvement/bold-figure-captions into main 2024-07-18 10:24:16 +00:00
1 changed files with 12 additions and 0 deletions
Showing only changes of commit 6371459259 - Show all commits

View File

@ -82,6 +82,18 @@
show figure: set block(breakable: true)
// make figure supplements bold
// based on: https://github.com/typst/typst/discussions/3871
show figure.caption: c => [
#if c.body.fields().len() > 0 {
text(weight: "semibold")[
#c.supplement #c.counter.display()
]
c.separator
}
#c.body
]
// APA style table
set table(
inset: 0.5em,