]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/measure-counter-broken.ly
Add support for measures split across lines.
[lilypond.git] / input / regression / measure-counter-broken.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc = "Measures split across line breaks may be numbered in a measure
5 count.  Each segment receives a number.  The first number has its ordinary
6 appearance, but numbers after the break are enclosed in parentheses."
7 }
8
9 \layout {
10   indent = 0
11   ragged-right = ##t
12 }
13
14 \relative c' {
15   \startMeasureCount
16   a4 b c d
17   a4 b
18   \bar ""
19   \break
20   c4 d
21   a4 b c d
22   \stopMeasureCount
23 }
24
25 \layout {
26   \context {
27     \Staff
28     \consists #Measure_counter_engraver
29   }
30 }