]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/staff/changing-the-number-of-lines-in-a-staff.ly
Trevor's latest update to fundamental.
[lilypond.git] / input / lsr / staff / changing-the-number-of-lines-in-a-staff.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 The number of lines in a staff may changed by overriding
6 @code{line-count} in the properties of @code{StaffSymbol}.
7
8
9 " }
10
11 upper = \relative c'' {
12   c1 d e f
13 }
14
15 lower = \relative c {
16   c1 b a g
17 }
18
19 \score {
20   \context PianoStaff <<
21     \new Staff <<
22       \upper
23     >>  
24     \new Staff  {
25         \override Staff.StaffSymbol  #'line-count = #4 
26         \clef bass
27         \lower
28     }
29   >>
30
31 }
32