]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fingering-cross-staff.ly
Add newlines at EOF where appropriate.
[lilypond.git] / input / regression / fingering-cross-staff.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "Fingerings work correctly with cross-staff beams."
5 }
6
7 music = \relative c {
8   \change Staff = "down"
9   c8 e g-1
10   \change Staff = "up"
11   e'-2 g-3 c-5
12   \change Staff = "down"
13   e,-3[ g,-1]
14 }
15
16 \score {
17   \new PianoStaff  <<
18     \new Staff="up" \new Voice { 
19       \stemUp \music }
20     \new Staff="down" \new Voice { 
21       \clef bass  \stemDown 
22       \override Fingering #'direction = #down 
23       \transpose c c, \music }
24   >>
25 }