Palmer, Ralph wrote:
I'm trying (right now) to reproduce only the
piano part (i.e., the bottom two staves) in the measure in the attached
.jpg.

Because the two arpeggia overlap you actually have two voices, and therefore need to typeset them in two voices. In the following i use the treble-voice for the first and the bass-voice for the second. (You need to change stem-direction and slur-direction yourself)

-Rune


\version "2.10.0"

\include "english.ly"
\header {
        instrument = "Piano"
        }



%Right hand
pianoRH = \context Voice = "one"
          {
          \clef treble
             \time 3/2
             \tempo 4=112
%Measure 5
          \time 4/4
          \change Staff = "bass"
          b,16\mf( fs b d'
          \change Staff = "treble"
          fs'16\< b' d'' fs''\!)~
          fs'' r8. s4
          }

%Left hand
pianoLH = \context Voice = "three"
          {
          \clef bass
%Measure 5
          s2 g16( b d' g'
          \change Staff = "treble"
          b' d'' g'' b'')
          \change Staff = "bass"
          |
          }

\book {
      \score {
      \context PianoStaff <<
      \context Staff = "treble" <<
      \pianoRH
      >>
      \context Staff = "bass" <<
      \pianoLH
      >>
      >>
        }
}


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

Reply via email to