]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/header-score-multiple.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / header-score-multiple.ly
1 \version "2.16.0"
2 \header {
3   texidoc="
4 A second score-level header block shall not entirely replace a first header block, but only update changed variables.
5 "
6 }
7
8 \markup \vspace #3
9 \markup { \bold Note: expect piece and opus. }
10 \markup \vspace #3
11
12 \score {
13   \new Staff { c'1 }
14   \header {
15     piece = "Piece correct (set in score)"
16     opus = "Opus incorrect (to be superseded at score level)"
17   }
18   \header {
19     % This should NOT overwrite the piece from above!
20     opus = "Opus correct (superseded at score level)"
21   }
22 }