]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-cross-staff.ly
Make relative-includes configurable with a -d option.
[lilypond.git] / input / regression / beam-cross-staff.ly
1
2 \version "2.11.51"
3 \header{
4 texidoc="
5 Beams can be typeset over fixed distance aligned staves, beam
6 beautification does not really work, but knees do. Beams should be
7 behave well, wherever the switching point is.
8 "
9 }
10
11 \context PianoStaff <<
12   \new Staff = "one" \relative c'{
13     \stemUp  c8[ c \change Staff=two \stemUp c c]
14     c[ c c c]
15     \change Staff=one
16     \stemDown  c8[ c \change Staff=two \stemUp c c]
17     r2
18     \stemDown  c8[ c \change Staff=one \stemDown c c]
19     r2
20     \change Staff=two
21     \stemUp  c8[ c \change Staff=one \stemDown c c]
22     r2
23   }
24   \new Staff = "two" \relative c'{
25     \clef bass
26     s1
27     s1
28     s1
29     s1
30   }
31 >>
32
33