]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/bar-number-every-five-reset.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / test / bar-number-every-five-reset.ly
index fe8bf2653cd80b3e3fd6568574d4045fd23ac4a8..540c8f3ce45e6eedda56583919147cc010847d80 100644 (file)
@@ -1,12 +1,13 @@
-\version "1.9.0"
+\version "2.3.4"
 
 \header {
     texidoc = "@cindex Bar Number Every Fifth Reset
 If you would like the bar numbers to appear at regular intervals, but
-not starting from measure zero, you can use the context function,
-@code{set-bar-number-visibility}, to automatically set
-@code{barNumberVisibility} so that the bar numbers appear at regular
-intervals, starting from the @code{\applycontext}.
+not starting from measure zero, you can use a context function,
+@code{set-bar-number-visibility}, to set automatically
+@code{barNumberVisibility}, so that the bar numbers appear at regular
+intervals, starting from the measure in which 
+@code{set-bar-number-visibility} is set using @code{\applycontext}.
 "
 
 }
@@ -14,16 +15,16 @@ intervals, starting from the @code{\applycontext}.
 resetBarnum = \context Score \applycontext
   #(set-bar-number-visibility 4)
 \score {
-    <
-        \notes \transpose c c'' {
-           \property Score.BarNumber \override #'break-visibility =#end-of-line-invisible
-           \property Score.RehearsalMark \override #'padding = #2.5
+    <<
+         \transpose c c'' {
+           \override Score.BarNumber  #'break-visibility =#end-of-line-invisible
+           \override Score.RehearsalMark  #'padding = #2.5
            \mark "A" \resetBarnum
            \repeat unfold 10 c1
            \mark \default \resetBarnum
            \repeat unfold 8 c
             \bar "|."
         }
-    >
+    >>
 \paper{raggedright = ##t}
 }