Measure counters: Difference between revisions
Appearance
Import snippet from LSR |
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
||
| Line 7: | Line 7: | ||
When a measure extends across a line break, the number will appear twice, the second time in parentheses. | When a measure extends across a line break, the number will appear twice, the second time in parentheses. | ||
<lilypond version="2.24 | <lilypond version="2.24" full> | ||
\layout { | \layout { | ||
\context { | \context { | ||
Revision as of 18:51, 16 November 2025
This snippet demonstrates the use of the Measure_counter_engraver to number groups of successive measures. Any stretch of measures may be numbered, whether consisting of repetitions or not.
The engraver must be added to the appropriate context. Here, a Staff context is used; another possibility is a Dynamics context.
The counter is begun with \startMeasureCount and ended with \stopMeasureCount. Numbering will start by default with 1, but this behavior may be modified by overriding the count-from property.
When a measure extends across a line break, the number will appear twice, the second time in parentheses.
\version "2.24"
\layout {
\context {
\Staff
\consists #Measure_counter_engraver
}
}
\new Staff {
\startMeasureCount
\repeat unfold 7 {
c'4 d' e' f'
}
\stopMeasureCount
\bar "||"
g'4 f' e' d'
\override Staff.MeasureCounter.count-from = #2
\startMeasureCount
\repeat unfold 5 {
g'4 f' e' d'
}
g'4 f'
\bar ""
\break
e'4 d'
\repeat unfold 7 {
g'4 f' e' d'
}
\stopMeasureCount
}
\paper { tagline = ##f }