]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index a72765ce44a8e16650950346aa63db2f0f4ab13f..ef1d5ad8ae9087c699bc1ba5b8d762d8ead6b8d6 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.unimi.it
 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.17.15"
+\version "2.18.0"
 
 \header {
   lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround"
@@ -21,7 +21,6 @@ workaround is to add a setting of
   doctitle = "Adding an extra staff at a line break"
 } % begin verbatim
 
-
 \score {
   \new StaffGroup \relative c'' {
     \new Staff
@@ -30,7 +29,7 @@ workaround is to add a setting of
     << { c1 | c }
        \new Staff {
          \key f \major
-         \once \override Staff.TimeSignature.stencil = ##f
+         \once \omit Staff.TimeSignature
          c1 | c
        }
     >>
@@ -39,7 +38,7 @@ workaround is to add a setting of
        \new Staff {
          \once \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible
          \key f \major
-         \once \override Staff.TimeSignature.stencil = ##f
+         \once \omit Staff.TimeSignature
          c1 | c
        }
     >>