]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-subdivision.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / beam-subdivision.ly
1 \header {
2
3   texidoc = "Beam count at subdivisions should match the location
4 of the current subdivision."
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