lilypond-user
[Top][All Lists]
Advanced

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

Re: tie from measure with one voice to a measure with two voices


From: Andrew Bernard
Subject: Re: tie from measure with one voice to a measure with two voices
Date: Fri, 17 Mar 2017 11:49:02 +1100

Hello Juan,

If your read the manual on simultaneous voices carefully you will find that if you use the '\\' construct the tie will not go across, but if you use the \new Voice construct, then the first voice in the simultaneous music is a continuation of the current voice, and ties work. Thus:

\score {
  \relative c''
  {
    d2 e2~
    <<
      { \stemUp e f }
      \new Voice
      { c4 d e f }
    >>
  }
}

It's quite subtle admittedly, but fundamental to understanding lilypond.

Andrew


reply via email to

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