lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bookpart without pagebreak?


From: nitram45
Subject: Re: bookpart without pagebreak?
Date: Tue, 30 Aug 2022 11:51:11 +0000

> 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"
    }
  }
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]