Reputation: 23
I have a numbered equation in Typst that is becoming a bit long and I want to break it in 2 so it continues on the next page, but the numbering doesnt split.
Tried using #pagebreak
, but that's not possible inside a container. Is there a way to split the container without breaking numbering or properly have it just split over 2 pages?
Upvotes: 1
Views: 632
Reputation: 540
Usually, when #pagebreak()
fails because of it being in a container, #colbreak()
can work. Unfortunately not here though, I'd recommend just resetting the equation counter manually and splitting up the equations with: #counter(math.equation).update(0)
for example.
Upvotes: 1