Printing bar numbers using modulo-bar-number-visible: Difference between revisions

m corr
mNo edit summary
 
Line 1: Line 1:
If the remainder of the division of the current <code>BarNumber</code> by the first argument of <code>modulo-bar-number-visible</code> equals its second argument print the <code>BarNumber</code>.
If the remainder of the division of the current bar number by the first argument of <code>modulo-bar-number-visible</code> equals its second argument, print a bar number.


Useful to print the <code>BarNumber</code> at certain distances, p.e.:
This is useful to print the bar number at certain distances. Some examples:


* <code>(modulo-bar-number-visible 3 2)</code> -&gt; prints 2,5,8
* <code>(modulo-bar-number-visible 3 2)</code> prints 2, 5, 8, ...
* <code>(modulo-bar-number-visible 4 2)</code> -&gt; prints 2,6,10
* <code>(modulo-bar-number-visible 4 2)</code> prints 2, 6, 10, ...
* <code>(modulo-bar-number-visible 2 1)</code> -&gt; prints 3,5,7
* <code>(modulo-bar-number-visible 2 1)</code> prints 3, 5, 7, ...
* <code>(modulo-bar-number-visible 5 0)</code> -&gt; prints 5,10,15
* <code>(modulo-bar-number-visible 5 0)</code> prints 5, 10, 15, ...


<lilypond version="2.24" full>
<lilypond version="2.24">
\layout {
\layout {
   \context {
   \context {
     \Score
     \Score
     \override BarNumber.break-visibility = ##(#f #t #t)
     \override BarNumber.break-visibility = ##(#f #t #t)
     barNumberVisibility = #(modulo-bar-number-visible 5 0)
     barNumberVisibility = #(modulo-bar-number-visible 5 0)
   }
   }
}
}
Line 21: Line 21:
   g1 | e | d | c
   g1 | e | d | c
}
}
\paper { tagline = ##f }
</lilypond>
</lilypond>