From: Joe Neeman Date: Sat, 26 Apr 2008 00:07:32 +0000 (+1000) Subject: Add a regression test for cross-staff fingerings. X-Git-Tag: release/2.11.45-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cde37dd71b880d581622cea619fd078a63aa12d9;p=lilypond.git Add a regression test for cross-staff fingerings. --- diff --git a/input/regression/fingering-cross-staff.ly b/input/regression/fingering-cross-staff.ly new file mode 100644 index 0000000000..1fa30c1f21 --- /dev/null +++ b/input/regression/fingering-cross-staff.ly @@ -0,0 +1,25 @@ +\version "2.11.44" + +\header { + texidoc = "Fingerings work correctly with cross-staff beams." +} + +music = \relative c { + \change Staff = "down" + c8 e g-1 + \change Staff = "up" + e'-2 g-3 c-5 + \change Staff = "down" + e,-3[ g,-1] +} + +\score { + \new PianoStaff << + \new Staff="up" \new Voice { + \stemUp \music } + \new Staff="down" \new Voice { + \clef bass \stemDown + \override Fingering #'direction = #down + \transpose c c, \music } + >> +} \ No newline at end of file