Some tweaks
This commit is contained in:
parent
7774532264
commit
7e08008ffa
@ -190,6 +190,7 @@ References to individual examples can be achieved using the `label` argument and
|
|||||||
morphemes: ([and], [#neg], [be_able.#smallcaps[pret].3#sg], [#smallcaps[def]], [sorcerer.#pl], [answer.#smallcaps[inf]], [to.3#sg.#smallcaps[m]]),
|
morphemes: ([and], [#neg], [be_able.#smallcaps[pret].3#sg], [#smallcaps[def]], [sorcerer.#pl], [answer.#smallcaps[inf]], [to.3#sg.#smallcaps[m]]),
|
||||||
translation: [and the sorcerers could not answer him],
|
translation: [and the sorcerers could not answer him],
|
||||||
label: \"sorcerers\",
|
label: \"sorcerers\",
|
||||||
|
label-suppliment: [Example]
|
||||||
)
|
)
|
||||||
|
|
||||||
As we have seen in @sorcerers, […].", addl-bindings: (neg: neg, sg: sg, pl: pl))
|
As we have seen in @sorcerers, […].", addl-bindings: (neg: neg, sg: sg, pl: pl))
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#import "abbreviations.typ"
|
#import "abbreviations.typ"
|
||||||
|
|
||||||
#let gloss-count = counter("gloss_count")
|
#let gloss-count = counter("gloss_count")
|
||||||
#let cmdlabel = label // a workround so we can use `label` as a variable name
|
|
||||||
|
|
||||||
#let build_gloss(item-spacing, formatters, gloss_line_lists) = {
|
#let build_gloss(item-spacing, formatters, gloss_line_lists) = {
|
||||||
assert(gloss_line_lists.len() > 0, message: "Gloss line lists cannot be empty")
|
assert(gloss_line_lists.len() > 0, message: "Gloss line lists cannot be empty")
|
||||||
@ -35,6 +34,10 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// a workround so we can use `label` as a variable name where it is shadowed by the function param `label`
|
||||||
|
// Once typst version 0.12 with https://github.com/typst/typst/pull/4038 is released we should be able
|
||||||
|
// to replace this workaround with `std.label`
|
||||||
|
#let cmdlabel = label
|
||||||
|
|
||||||
#let gloss(
|
#let gloss(
|
||||||
header: none,
|
header: none,
|
||||||
@ -49,6 +52,7 @@
|
|||||||
translation: none,
|
translation: none,
|
||||||
translation-style: none,
|
translation-style: none,
|
||||||
label: none,
|
label: none,
|
||||||
|
label-suppliment: [example],
|
||||||
|
|
||||||
item-spacing: 1em,
|
item-spacing: 1em,
|
||||||
gloss-padding: 2.0em, //TODO document these
|
gloss-padding: 2.0em, //TODO document these
|
||||||
@ -124,8 +128,8 @@
|
|||||||
style(styles => {
|
style(styles => {
|
||||||
block(breakable: breakable)[
|
block(breakable: breakable)[
|
||||||
#figure(
|
#figure(
|
||||||
kind: "lingexample",
|
kind: "ling-example",
|
||||||
supplement: [Example],
|
supplement: label-suppliment,
|
||||||
numbering: it => [#gloss-count.display()],
|
numbering: it => [#gloss-count.display()],
|
||||||
stack(
|
stack(
|
||||||
dir: ltr, //TODO this needs to be more flexible
|
dir: ltr, //TODO this needs to be more flexible
|
||||||
|
Loading…
Reference in New Issue
Block a user