\version "2.24.0" \language "english" global = { \key c \minor s1*4 \bar "|." } TenorMusic = \relative { g1 af2 c2 c2 << c2 \new Voice = "melody" { \voiceThree bf4 af4 } >> \arpeggioBracket < c g >1 \arpeggio } BassMusic = \relative { af,1 df2 c2 f2 bf,2 ef1 } \markup { \fill-line { \score { << \new ChoirStaff << \new Staff << \clef "bass" \global \new Voice = "Tenor" << \voiceOne \TenorMusic >> \new Voice = "Bass" << \voiceTwo \BassMusic >> >> >> >> \layout { \context { \Score fineBarType = "||" } \context { \Staff \remove Time_signature_engraver } } } } }