]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/printing-bar-numbers-with-changing-regular-intervals.ly
Doc: NR - 1.2.5 - Bar Numbers - added snippet
[lilypond.git] / Documentation / snippets / new / printing-bar-numbers-with-changing-regular-intervals.ly
1 \version "2.18.0"
2
3 \header {
4   lsrtags = "rhythms, text"
5
6   texidoc = "
7 The bar number interval can be changed by changing the context function
8 @code{set-bar-number-visibility}.
9
10 "
11   doctitle = "Printing bar numbers with changing, regular intervals"
12 } % begin verbatim
13
14
15 \relative c' {
16   \override Score.BarNumber.break-visibility = #end-of-line-invisible
17   \context Score \applyContext #(set-bar-number-visibility 4)
18   \repeat unfold 10 c''1
19   \context Score \applyContext #(set-bar-number-visibility 2)
20   \repeat unfold 10 c''
21 }