]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-collision-beamcount.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / beam-collision-beamcount.ly
1 \version "2.19.21"
2 \header {
3   texidoc = "Manual beams do not collide with notes."
4 }
5
6 \layout {
7 %  debug-beam-scoring = ##t
8   indent = #0.0
9 }
10
11 \relative \new Staff {
12
13   <<
14     \new Voice {
15       \voiceOne
16       \repeat unfold 4 { c'8[ c] }
17     }
18     \new Voice \relative {
19       \voiceThree
20       \autoBeamOff
21       b' r a r
22       g r f r
23     } 
24   >>
25
26    |
27   
28   <<
29     \new Voice {
30       \voiceOne
31       \repeat unfold 4 { c16[ c] }
32     }
33     \new Voice \relative {
34       \voiceThree
35       \autoBeamOff
36       b' r a r
37       g r f r
38     } 
39   >>
40
41 }