]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-subdivide-trailing-stem.ly
Merge branch 'master' into translation
[lilypond.git] / input / regression / beam-subdivide-trailing-stem.ly
1 \version "2.19.34"
2
3 \header {
4
5   doctitle = "Beam subdivide over quarter notes"
6
7   texidoc = "If in a subdivided beam one single stem follows a subdivision
8 the beam count should reflect the beam count of the subdivision as usual.
9 That is, the beam count should not be increased according to the remaining
10 length of the beam. The appended single stem has beamlets to the left."
11
12 }
13
14 \relative c' {
15   \time 1/4
16   \set subdivideBeams = ##t
17   \set baseMoment = #(ly:make-moment 1/16)
18   c32 [ c c c c32 ] r16.
19   c32 [ c c c c64 ] r32. r16
20   c32 [ c c32 ] r32 r8
21   c32 [ c c64 ] r32. r8
22 }