2009/10/17 Frédéric Bron <frederic.b...@m4x.org>:
> In voice style, when switching from one voice to two voices, the
> program writes too much accidentals.
> This example demonstrates the problem (2.12.2 and 2.13.6): the second
> bes should not have a written flat.
>
> \relative c'' {
>        #(set-accidental-style 'voice)
>        \key f \major
>        bes1
>        << { bes } \\ { g } >>
> }

This snippet has three separate voices, so you'd expect to get a flat
on the second B flat.  Compare with the following, which has two
voices:

\relative c'' {
  #(set-accidental-style 'voice)
  \key f \major
  bes1
  << {
      \voiceOne
      bes
    }
    \new Voice {
      \voiceTwo
      g
  } >>
}

Regards,
Neil


_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to