Next: , Previous: Line breaking, Up: Global layout



7.5.7 Multiple movements

A document may contains multiple pieces of music. Examples of these are an etude book, or an orchestral part with multiple movements. Each movement is entered with a \score block,

\score {
  ..music..
}

The movements are combined together to \book block is used to group the individual movements.

\book {
  \score {
    ..
  }
  \score {
    ..
  }
}

The header for each piece of music can be put inside the \score block. The piece name from the header will be printed before each movement. The title for the entire book can be put inside the \book, but if it is not present, the \header which is at the top of the file is inserted.

\book {
  \header {
    title = "Eight miniatures"
    composer = "Igor Stravinsky"
  }
  \score {
    ...
    \header { piece = "Romanze" }
  }
  \score {
    ...
    \header { piece = "Menuetto" }
  }
}

This page is for LilyPond-2.4.5 (stable-branch).

Report errors to <bug-lilypond@gnu.org>.

Other languages: English.
Using automatic language selection.