Am 13.11.19 um 20:43 schrieb bill wolf:
Is there another way that avoids the fiddly adjustments--or even using two 
voices?

You’ll need the two voices because of the opposite stem directions in the second half of the measure. However you can save some typing by using { } \\ { } instead of \new Voice and \voiceXXX settings. This also sets \voiceTwo internally instead of \voiceFour for the lower voice which makes the force-hshift unnecessary.

\version "2.18.2"

\new Staff {
  <<
    {
      s4 s8 \once \hideNotes g~ g g g4
    } \\ {
      <c g>4 q8 <c~ g> c2
    }
  >>
}

Reply via email to