X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fchanging-the-number-of-lines-in-a-staff.ly;h=a2a04196b1a46ed28823bc6a5609317e329a26d5;hb=c6554467b0a9beddf0d7ef12746ae31a25fe36e7;hp=7b973ad37843cf547ce70fc59e99dee7494452c5;hpb=1c0ec6f412462ee0f773b09b079847d2be03f64f;p=lilypond.git diff --git a/input/lsr/changing-the-number-of-lines-in-a-staff.ly b/input/lsr/changing-the-number-of-lines-in-a-staff.ly index 7b973ad378..a2a04196b1 100644 --- a/input/lsr/changing-the-number-of-lines-in-a-staff.ly +++ b/input/lsr/changing-the-number-of-lines-in-a-staff.ly @@ -1,33 +1,38 @@ -%% Do not edit this file; it is auto-generated from LSR! -%% Tags: staff-notation -\version "2.11.35" +%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% This file is in the public domain. +\version "2.11.62" -\header { texidoc = " -The number of lines in a staff may changed by overriding -@code{line-count} in the properties of @code{StaffSymbol}. +\header { + lsrtags = "staff-notation" + texidoc = " +The number of lines in a staff may changed by overriding the +@code{StaffSymbol} property @code{line-count}. -" } + + + +" + doctitle = "Changing the number of lines in a staff" +} % begin verbatim upper = \relative c'' { - c1 d e f + c4 d e f } lower = \relative c { - c1 b a g + \clef bass + c4 b a g } \score { \context PianoStaff << - \new Staff << + \new Staff { \upper - >> - \new Staff { - \override Staff.StaffSymbol #'line-count = #4 - \clef bass - \lower + } + \new Staff { + \override Staff.StaffSymbol #'line-count = #4 + \lower } >> - } -