X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fchanging-the-number-of-lines-in-a-staff.ly;h=7d60f76df173bd75ed070cd0be8cb570aa3d09b0;hb=3eb1e37e2e0b3966142cd04b85e30ab882308612;hp=8b8ae72d4a6f12cbcd35ba69435eb32d9d611d3e;hpb=a7f76aae921157b3ebc50e40628fd911a308edf3;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 8b8ae72d4a..7d60f76df1 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,39 @@ -%% 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.13.1" -\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 -" } -% 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 } >> - }