]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/printing-marks-on-every-staff.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / lsr / printing-marks-on-every-staff.ly
index ef3b6d354c4ffb71102aa2f2a35ccbaef6d67529..b5a54da703e0c0d38d88b7e579120da06a94023c 100644 (file)
@@ -1,6 +1,6 @@
 %% 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"
+\version "2.12.0"
 
 \header {
   lsrtags = "text"
@@ -20,21 +20,22 @@ they may also be printed on every staff.
 "
   doctitle = "Printing marks on every staff"
 } % begin verbatim
-{
-  \new Score \with {
-    \remove "Mark_engraver"
-    \remove "Staff_collecting_engraver"
-  }
+
+\score {
   <<
-    \new Staff \with {
-      \consists "Mark_engraver"
-      \consists "Staff_collecting_engraver"
+    \new Staff { c''1 \mark "molto" c'' }
+    \new Staff { c'1 \mark "molto" c' }
+  >>
+  \layout {
+    \context {
+      \Score
+      \remove "Mark_engraver"
+      \remove "Staff_collecting_engraver"
     }
-    { c''1 \mark "molto" c'' }
-    \new Staff \with {
+    \context {
+      \Staff
       \consists "Mark_engraver"
       \consists "Staff_collecting_engraver"
     }
-    { c'1 \mark "molto" c' }
-  >>
+  }
 }