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