lilypond-user
[Top][All Lists]
Advanced

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

Re: How to tie the last note of one variable to the first note of anothe


From: Xavier Scheuer
Subject: Re: How to tie the last note of one variable to the first note of another variable?
Date: Mon, 24 Jan 2011 00:49:55 +0100

On 22 January 2011 20:07, James Bailey <address@hidden> wrote:
>
> I haven't checked it, but they're probably in different voice contexts.
> Possible explicity doing a \new Voice = first and \context Voice = first
> where appropriate may solve the problem.

Yes, or simply putting all in a  \new Voice  works:

\version "2.13.46"

partOne = \relative c' {
  c4 e g e~
}

partTwo = \relative c' {
  e1
  c4 e g e~
  e1
}

\score {
  \new PianoStaff <<
    \set PianoStaff.midiInstrument = "acoustic grand"
    \new Staff {
      \tempo 4 = 120
      \new Voice {
        \partOne
        \partTwo
      }
    }
  >>
  \midi { }
  \layout {}
}


Cheers,
Xavier

-- 
Xavier Scheuer <address@hidden>



reply via email to

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