> Dear community, > I would like to know how the pagebreak could be avoided between the two > "movements" in the below quoted snippet:
It is because bookparts automatically do this behaviour. To make separate movements fit into the same page, you have to do \score block instead. \version "2.22.0" MusicI = \relative c' {c4 d e f g1 } MusicII = \relative g' { \time 2/4 g4 e8 f g4 e c1 } \bookpart { \header { title = "My great Work" composer ="Stefan Thomas" } \score { \new Staff \MusicI \header { piece = "First Movement" } } \score { \new Staff \MusicII \header { piece = "Second Movement" } } }