Hi,
I've small problem:

I write Score for piano and I use parallelMusic. I've two voices in right hand. In second bar Voice two (RightB) divides to two "voices" again. But... lilypond joins voice RightA with upper part of voice RightB. In this position is generated one stem only. I need three separate voices in this position:
1. a'4.
2. g'4
3. <a8 h>

Can somebody help me?

Zbynek




\version "2.10.33"

\include "deutsch.ly"

music = {
  \time 3/4
  \parallelMusic #'(RightA RightB Left) {
    d''4.( e''8 d''4) |
    <d' fis' a'>4 <d' fis' a'> <d' g'> |
    <d, d>4 <c, c> <h,, h,> |

    c''8( h') a'4.( g'8) |
    <e' g'>4 <<g' \\ {a8 h} >> <c' d' fis'>4 |
    <c, c>4 <d, d> <d,, d,> |
  }
}

\score {
  \new PianoStaff <<
    \music
    \new Staff <<
      \key g \major
      \RightA \\
      \RightB
    >>
    \new Staff {
      \key g \major
      \clef bass
      \Left
    }
  >>
}



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

Reply via email to