\version "2.12.3" \include "english.ly" \paper { #(set-paper-size "a4") } global = { \key d \major \numericTimeSignature \time 4/4 } right = \relative c' { \global s1 r4 8 4 r8 8 4 r2 } leftUp = \relative c'' { \global \change Staff = "right" \times 2/3 { 8 ( 8 8 ~ } % It's the last tie in this line that I want to see, % crossing to the lower staff. \set doubleSlurs = ##t 4 ~ 8. 16 4 ) ( \change Staff = "left" \voiceOne 1 ) ~ 1 } leftDown = \relative c'' { \global d,1 ~ \voiceTwo d ~ d } \score { \new PianoStaff << \new Staff = "right" { \right } \new Staff = "left" << \leftUp \leftDown >> >> \layout { \context { \RemoveEmptyStaffContext % need to hide the left-hand staff when not used % may need to move this into staves later? \override VerticalAxisGroup #'remove-first = ##t } } }