]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
Doc: CSS: A better brown for the usage manual
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index 4abab6c50b057511fa0f008c8c3989572b897e78..ef1d5ad8ae9087c699bc1ba5b8d762d8ead6b8d6 100644 (file)
@@ -1,13 +1,13 @@
 %% 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.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "breaks, staff-notation, workaround, contexts-and-engravers"
+  lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround"
 
   texidoc = "
 When adding a new staff at a line break, some extra space is
@@ -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
        }
     >>