#How to prevent auto-pagebreaks from ensuring there are at least two lines of text on the next page?

2 messages · Page 1 of 1 (latest)

odd nacelle
#

(In my attached demo, the text is broken across columns but I see the same phenomenon with pages.)

The compiler seems to never move only one line to the next column, always taking at least two lines. In the case when only one line is excess, two lines are taken and this leaves a blank line in the previous column. How do I disable this behavior?

#
#set par(
  justify: true,
)

#let x = lorem(70)

#x
#pagebreak()

#x
#text(fill:red)[Some extra text to make this column have 2 lines]```