Add point-and-click to non-default rehearsal marks.
[lilypond/mpolesky.git] / Documentation / snippets / changing-the-number-of-lines-in-a-staff.ly
blob2b883a6fa6e82695e37bf55d166863eebc4aabe3
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.29"
6 \header {
7 lsrtags = "staff-notation"
9 texidoc = "
10 The number of lines in a staff may changed by overriding the
11 @code{StaffSymbol} property @code{line-count}.
17 doctitle = "Changing the number of lines in a staff"
18 } % begin verbatim
20 upper = \relative c'' {
21 c4 d e f
24 lower = \relative c {
25 \clef bass
26 c4 b a g
29 \score {
30 \context PianoStaff <<
31 \new Staff {
32 \upper
34 \new Staff {
35 \override Staff.StaffSymbol #'line-count = #4
36 \lower