lilypond-user
[Top][All Lists]
Advanced

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

Re: tieWaitForNote


From: Malte Meyn
Subject: Re: tieWaitForNote
Date: Tue, 24 Nov 2015 08:04:35 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0



Am 24.11.2015 um 06:53 schrieb Mark Stephen Mrotek:
Everything is correct except that the ties do not appear. What is my error?

If you really want these note length values you need a << >> construct but without \\ because that would create new Voices. The only new Voice you need is the one for the rest because LilyPond cannot put a r8 and a g4. to the same stem (that’s what it tries if you use << >> without \\).

\version "2.18.2"

\relative c {
  \key e \minor
  \time 6/8
  \set tieWaitForNote = ##t
  \tieDown
  <<
    \new Voice { \voiceOne r8 }
    { s8 s d'~ }
    { g,4.~ }
    { s8 b4~ }
  >>
  <g b d g>4.
  \tieNeutral
}



reply via email to

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