You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed the following behavior while working on something that automatically generates a presentation consisting of one slide per "item" in a particular set of data. It's possible that this is totally expected and I'm simply misunderstanding this package or Typst itself (in which case, please accept an advance apology for my ignorance).
If I build the following with Typst 0.12.0:
#import "@preview/polylux:0.3.1": *
#set page( paper: "presentation-16-9"
)
#polylux-slide[
a
]
#polylux-slide[
b
]
#polylux-slide[
c
]
#polylux-slide[
d
]
Then I get an output with a single slide, where I would expect four slides:
Strangely if I build this program instead:
#import "@preview/polylux:0.3.1": *
#set page( paper: "presentation-16-9"
)
#polylux-slide[
a
]
#polylux-slide[
b
]
#polylux-slide[
c
]
#polylux-slide[
d
]
Then only a and b are merged into the first slide:
The problem is somehow specific to the first slide. If I put an explicit break after the first slide I seem to always get the number of slides out that I'd expect:
I noticed the following behavior while working on something that automatically generates a presentation consisting of one slide per "item" in a particular set of data. It's possible that this is totally expected and I'm simply misunderstanding this package or Typst itself (in which case, please accept an advance apology for my ignorance).
If I build the following with Typst 0.12.0:
Then I get an output with a single slide, where I would expect four slides:
Strangely if I build this program instead:
Then only
a
andb
are merged into the first slide:The problem is somehow specific to the first slide. If I put an explicit break after the first slide I seem to always get the number of slides out that I'd expect:
This yields:
The text was updated successfully, but these errors were encountered: