I tried fooling around with tieWaitForNote
You didn't show your code, so it's not easy to guess what you tried. I have no cross-staff experience, but it looks to me like the cross-staff run is a lot better supported than the cross-staff chord (where you have to choose a stem length). At any rate, it seems from NR 2.2.1 that the beamed run should be in just one voice but the chord should be in two voices. This is incompatible with ties. So I assume you have to fool around with hidden notes to give tieWaitForNote a start in both chord voices. See hidden.ly for two ways of doing this.
Cheers, Robin
<<attachment: hidden.png>>
\version "2.12.1"
\new PianoStaff <<
\new Staff = "rh" {
{
\time 3/4
\set tieWaitForNote = ##t
s2.^"r.h. hidden"
\hideNotes
\override TupletNumber #'stencil = ##f
\override NoteColumn #'ignore-collision = ##t
\times 4/6 {fis16[ b16 dis'16 ~ gis'16 ~ c''8] ~ }
\unHideNotes
\revert TupletNumber #'stencil
\revert NoteColumn #'ignore-collision
<dis' gis' c''>8 ~ <dis' gis' c''>4.
}
}
\new Staff = "lh" {
{
\clef bass
\stemUp
\set tieWaitForNote = ##t
s2.
\times 4/6 { fis16[ ~ b16 ~
\change Staff = "rh"
dis'16 gis'16 c''8] }
\change Staff = "lh"
\override Stem #'cross-staff = ##t
\override Stem #'length = #12
\override Stem #'flag-style = #'no-flag
<fis b>8 ~ <fis b>4.
\revert Stem #'cross-staff
\revert Stem #'length
\revert Stem #'flag-style
}
}
>>
\new PianoStaff <<
\new Staff = "rh" {
{
\time 3/4
\set tieWaitForNote = ##t
s2.
\change Staff = "lh"
\stemUp
\times 4/6 {
fis16[ b16
\change Staff = "rh"
dis'16 ~ gis'16 ~ c''8] ~ }
<dis' gis' c''>8 ~ <dis' gis' c''>4.
}
}
\new Staff = "lh" {
{
\clef bass
\stemUp
\set tieWaitForNote = ##t
s2._"l.h. hidden"
\hideNotes
\override TupletNumber #'stencil = ##f
\override NoteColumn #'ignore-collision = ##t
\times 4/6 {fis16[ ~ b16 ~ s4] }
\unHideNotes
\revert TupletNumber #'stencil
\revert NoteColumn #'ignore-collision
\override Stem #'cross-staff = ##t
\override Stem #'length = #12
\override Stem #'flag-style = #'no-flag
<fis b>8 ~ <fis b>4.
\revert Stem #'cross-staff
\revert Stem #'length
\revert Stem #'flag-style
}
}
>>
_______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
