]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-subdivide-tuplets.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / beam-subdivide-tuplets.ly
1 \version "2.17.11"
2
3 \header {
4   
5   doctitle = "Beam subdivide tuplets"
6
7   texidoc = "
8 Tuplets that span more than one beat should be
9 subdivided if subdivideBeams is #t.  In this example,
10 the beams should be subdivided every 1/8.
11 "
12
13 }
14
15 \relative c' {
16     \tupletSpan 4
17     \set baseMoment = #(ly:make-moment 1/8)
18     \set subdivideBeams = ##t
19     \tuplet 6/4 { \repeat unfold 24 { c16 } }
20 }