]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-2.ly
Doc: clarify the use of a Scheme engraver.
[lilypond.git] / Documentation / snippets / how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-2.ly
index 0e7fb3a8cbcb2f5771b6d5a1c4516d4826f896d1..80a56e227e5338159355ea7a6899813163eb1696 100644 (file)
@@ -4,10 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.16.0"
 
 \header {
-  lsrtags = "editorial-annotations, staff-notation, tweaks-and-overrides, expressive-marks"
+  lsrtags = "editorial-annotations, expressive-marks, staff-notation, tweaks-and-overrides"
 
   texidoc = "
 This method prints two 'rehearsal marks' - one above the stave and one
@@ -30,7 +30,7 @@ independently of the other.
     \new Staff {
       <<
         \new Voice \with {
-          \consists Mark_engraver
+          \consists "Mark_engraver"
           \consists "Staff_collecting_engraver"
         }
         { c4 d e f
@@ -38,7 +38,7 @@ independently of the other.
           c4 d e f
         }
         \new Voice \with {
-          \consists Mark_engraver
+          \consists "Mark_engraver"
           \consists "Staff_collecting_engraver"
           \override RehearsalMark #'direction = #DOWN
         }