]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-number-of-lines-in-a-staff.ly
Merge commit 'ce4b499'
[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 http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "staff-notation"
7  texidoc = "
8 The number of lines in a staff may changed by overriding
9 @code{line-count} in the properties of @code{StaffSymbol}.
10
11
12 " }
13 % begin verbatim
14 upper = \relative c'' {
15   c1 d e f
16 }
17
18 lower = \relative c {
19   c1 b a g
20 }
21
22 \score {
23   \context PianoStaff <<
24     \new Staff <<
25       \upper
26     >>  
27     \new Staff  {
28         \override Staff.StaffSymbol  #'line-count = #4 
29         \clef bass
30         \lower
31     }
32   >>
33
34 }
35