I would like to tie a note into a short polyphon section \score { \relative { g2 ~ << g2 \\ {\stemUp c8 d e f} >> } \layout { } } But that gives a warning and no tie. (It is intended to have two half notes tied) You can't tie across voices, that's true. this works though: \version "2.25.18" \score { \relative { << {s2 c'8 d e f } \\ {g,2 ~ g2} >> } }