]> git.donarmstrong.com Git - lilypond.git/blob - input/test/staff-lines.ly
19fc31b39f8c82f76237e7968e32b762afa14bb0
[lilypond.git] / input / test / staff-lines.ly
1
2 \version "2.1.7"
3
4 \header { texidoc="@cindex Staff Lines
5 Set staff symbol property. "
6 }
7
8
9 upper = \notes\relative c'' {
10   c1 d e f
11 }
12
13 lower = \notes\relative c {
14   c1 b a g
15 }
16
17 \score {
18   \context PianoStaff <<
19     \new Staff <<
20       \upper
21     >>  
22     \new Staff  {
23         \property Staff.StaffSymbol \set #'line-count = #4 } <<
24         \clef bass
25         \lower
26     >>  
27   >>
28   \paper { raggedright=##t}  
29 }