]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-subdivision.ly
Fix issue 4355 -- broken beam subdivision
[lilypond.git] / input / regression / beam-subdivision.ly
1 \header {
2
3   texidoc = "Beam subdivisions should match the durations of the subdivided
4 groups, as established by baseMoment."
5   }
6
7 \version "2.19.19"
8
9 \layout {
10   ragged-right = ##t
11 }
12
13 {  
14   \set subdivideBeams = ##t
15   \set baseMoment = #(ly:make-moment 1 4)
16   c''32[^\markup{"baseMoment 1/4"} c'' c'' c'' c'' c'' c'' c'']
17   \set baseMoment = #(ly:make-moment 1 8)
18   c''32[^\markup{"baseMoment 1/8"} c'' c'' c'' c'' c'' c'' c'']
19   \set baseMoment = #(ly:make-moment 1 16)
20   c''32^\markup{"baseMoment 1/16"}[ c'' c'' c'' c'' c'' c'' c'']
21   \set baseMoment = #(ly:make-moment 1 32)
22   c''64^\markup{"baseMoment 1/32"}[ \repeat unfold 14 {c''64} c''64]
23 }
24