]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-number-of-lines-in-a-staff.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "staff-notation"
7
8   texidoc = "
9 The number of lines in a staff may changed by overriding the
10 @code{StaffSymbol} property @code{line-count}.
11
12
13
14
15 "
16   doctitle = "Changing the number of lines in a staff"
17 } % begin verbatim
18 upper = \relative c'' {
19   c4 d e f
20 }
21
22 lower = \relative c {
23   \clef bass
24   c4 b a g
25 }
26
27 \score {
28   \context PianoStaff <<
29     \new Staff {
30       \upper
31     }
32     \new Staff {
33       \override Staff.StaffSymbol #'line-count = #4 
34       \lower
35     }
36   >>
37 }