]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/bar-number-every-five-reset.ly
Merge branch 'master' of ssh+git://gpercival@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / test / bar-number-every-five-reset.ly
index ceb832148931a72919ae11b85e2ece6fe1b346da..fe08b08682c872d251fe0f557c0200339592b381 100644 (file)
@@ -1,29 +1,30 @@
-\version "1.9.2"
+\version "2.10.0"
 
 \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}.
 "
 
 }
 
-resetBarnum = \context Score \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}
+    >>
+\layout{ragged-right = ##t}
 }