Sorry fot the confused title, i don't know how to write my question in english.
Basically I'm trying to write this on Lilypond,
and until now i managed to get this
How can I tie the notes on the lower staff?
This is the source code of the file
\version "2.20.0"
\language "espanol"
\score{
\new PianoStaff <<
\new Staff = "up" {
\relative do{
\clef G
\time 4/4
\numericTimeSignature
s1
\set tieWaitForNote = ##t
\grace {
\change Staff = "down"
fa,16~ [ re'~ fa~ si~
\change Staff = "up"
re~ fa~ si~ re~ si'~] }
\crossStaff { <re,, fa si re si'>1 }
}
}
\new Staff = "down" {
\relative do,{
\clef F
\time 4/4
\numericTimeSignature
s1
\crossStaff { <fa re' fa si>1 }
}
}
>>
\layout{
\context{
\PianoStaff
\consists #Span_stem_engraver
}
}
}
I'm new in stackoverflow so I can't post pictures.
Thanks for the help.