]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-collision-feasible-region.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / beam-collision-feasible-region.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "A rough guess for collisions is taken into account when
5   choosing initial beam configurations; the initial position may be
6   chosen to be either above or below large collisions."
7 }
8
9 \layout {
10   ragged-right = ##t 
11 }
12
13 partOne = <<
14   { s4 s8 \key f \major s8 }
15   {
16     g8[ c'''8]
17     g8[ c'''8]
18   }
19 >>
20
21 partTwo = <<
22   { \clef bass \key c \major s4 s8 \key f \major s8 }
23   {
24     c,8[ e'8]
25     c,8[ e'8]
26   }
27 >>
28
29 partThree = <<
30   { \clef bass \key c \major s4 s8 \key f \major s8 }
31   {
32     b,,8[ e'8]
33     b,,8[ e'8]
34   }
35 >>
36
37 \new Voice {
38   \partOne
39   \partTwo
40   \partThree
41 }
42