]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/header-book-multiplescores.ly
3e33d1ae2e9b0ca01ecd09853a437040017ddbf0
[lilypond.git] / input / regression / header-book-multiplescores.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc="
5 Changing the header fields in a book or a bookpart shall not have any effect on the global default values.
6 "
7 }
8
9 \markup \vspace #2
10 \markup { \bold Note: expect only title. }
11 \markup \vspace #2
12
13 \header {
14   title = "Title correct (set at top level)"
15 }
16 \score {
17   \relative c' { c1 }
18 }
19
20
21 \book {
22   % This should NOT set a global subtitle for the first score above:
23   \header {
24     subtitle = "Subtitle (set at book level)"
25   }
26   \markup \vspace #2
27   \markup { \bold Note: expect title and subtitle. }
28   \markup \vspace #2
29   %% Do we have a title, and is the subtitle set?
30   \score {
31     \new Staff { c'1 }
32   }
33 }