]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-names-in-grand-staff.ly
f81d4fe299bc7c04416fc5a2f51c640aa57da557
[lilypond.git] / input / regression / chord-names-in-grand-staff.ly
1 \version "2.16.0"
2
3 \header {
4
5   texidoc = "
6 GrandStaff contexts accept chord names.  The chord name in this
7 example should be printed above the top staff.
8 "
9 }
10
11 \score {
12    \new GrandStaff
13    <<
14     \chords {
15       f1
16     }
17     \new Staff {
18       \relative c'' {
19         a4 a a a
20       }
21     }
22     \new Staff {
23       \clef "bass"
24       \relative c {
25         a4 a a a
26       }
27     }
28    >>
29 }