int(0) Changing \partCombine texts - LilyPond wiki Jump to content

Changing \partCombine texts

From LilyPond wiki

When using the automatic part combining feature, the printed text for the solo and unison sections may be changed.

\version "2.24.0"

\new Staff <<
  \set Staff.soloText = "girl"
  \set Staff.soloIIText = "boy"
  \set Staff.aDueText = "together"
  \partCombine
    \relative c'' {
      g4 g r r
      a2 g
    }
    \relative c'' {
      r4 r a( b)
      a2 g
    }
>>