> Okay, I've now done as you said, but it still looks wrong:
> 
> \score {
>   \context Staff <
>     \context Voice = one { \notes \relative c' { c4 d e f g2 g } }
>     \context Voice = two { \notes \relative c' { a4 b c d e2 f } }
>   >
> }

It seems as if both voices share the same stems (and thus are
not shifted horizontally) unless you explicitly specify 
different stem directions. Bug or feature?

I guess the following version gives more of what you want.

\score {
  \notes \relative c'{
    \context Staff <
      { \voiceone \stemboth c4 d e f g2 g  }
      { \voicetwo \stemboth a,4 b c d e2 f  }
    >
  }
}

     /Mats

Reply via email to