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
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to