lilypond-user
[Top][All Lists]
Advanced

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

Re: slurs and ties


From: Kieren MacMillan
Subject: Re: slurs and ties
Date: Fri, 6 Nov 2009 10:06:35 -0500

Hi Erik,

Sounds to me like you don't know about \tieWaitForNote.
Although 30 seconds wouldn't be enough, I think I could do it in about 1:30... ;)

Okay, it took 1:45... most of that was spent perfecting the code indentation! ;)
Here's a hint:

\version "2.13.6"
\include "english.ly"

tieVoice = {
  \voiceThree
  \shiftOff
  \override Voice.NoteColumn #'ignore-collision = ##t
  \set tieWaitForNote = ##t
  \hideNotes
}

tieMusic = \relative c'' {
  \key d \major
  \time 3/4
  <a d>4 <<
      { \voiceOne d,8 fs a d }
      \new Voice { \voiceTwo d,4 <d fs> }
      \new Voice { \tieVoice d8 _~ fs _~ <d fs>4 }
    >> \oneVoice
}

\score { \tieMusic }

Hope this helps!
Kieren.




reply via email to

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