Compare commits

...

4 Commits

Author SHA1 Message Date
Sven Vogel 0c89695cda Merge pull request 'improvement/bold-figure-captions' (#27) from improvement/bold-figure-captions into main
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 25s Details
Reviewed-on: #27
2024-07-18 10:24:15 +00:00
Sven Vogel b80351fb70 added numbering format for listing caption
Gitea Action for checking typst compilation / run-ci-linux (push) Successful in 25s Details
2024-07-18 12:20:38 +02:00
Sven Vogel baba65ef41 changed display supplement for code blocks 2024-07-18 12:19:35 +02:00
Sven Vogel 6371459259 changed display supplement to bold text 2024-07-18 12:18:01 +02:00
1 changed files with 22 additions and 0 deletions

View File

@ -82,6 +82,28 @@
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("1.1.1")
]
c.separator
}
#c.body
]
// change the display supplement according to the text langugae
// based on: https://github.com/typst/typst/issues/3273
show figure.where(kind: raw): set figure(supplement: context {
if text.lang == "de" {
"Quelltext"
} else {
"Listing"
}
})
// APA style table
set table(
inset: 0.5em,