Hi David,

On 7/1/07, David Fedoruk <[EMAIL PROTECTED]> wrote:


Since most of this music is not two voices (right and left hand) but
three or four, is there a way to add those possibliities to the scheme
below?    \new voice = "upper1" \upper1 ? would that work? It would
need  << \new voice = "upper1" \upper1 >> ?


\score {
     \new PianoStaff <<
     \set PianoStaff.instrumentName = "Piano  "
            \new Staff = "upper" \upper  <<
               \new voice = "upper1" \upper1 >>
         \new Staff = "lower" \lower <<
             \new voice = "lower1" \lower1 >>
            >>
     \layout { }
     \midi { }
}


You're nearly there, but you need a \new Voice for each voice, not just the
second voice, i.e.

\score {
       \new PianoStaff <<
       \set PianoStaff.instrumentName = "Piano  "
       \new Staff = "upper" <<
       \new Voice = "upper" \upper
       \new Voice = "upperOne" \upperOne
       >>
       \new Staff = "lower" \lower
       >>
       \layout { }
       \midi { }
}

It's probably easier though to combine the two voices together, e.g.

upper = { << \upperOne \\ \upperTwo >> }

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

Reply via email to