lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Voice / slur problem


From: Rune Zedeler
Subject: Re: Voice / slur problem
Date: Fri, 19 Jan 2007 14:19:10 +0100
User-agent: Thunderbird 1.5.0.9 (X11/20070104)

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
      >>
      >>
        }
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]