lilypond-user
[Top][All Lists]
Advanced

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

Re: A Beam and a Slur in a Bracketed Tuplet


From: Jean Abou Samra
Subject: Re: A Beam and a Slur in a Bracketed Tuplet
Date: Mon, 19 Oct 2020 23:56:04 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0


Le 19/10/2020 à 23:43, Marc Shepherd a écrit :
In the example shown below, notice that the slur is incorrectly pointing upward, and "crashing" into the tuplet bracket. It only happens with both the slur and the beam present. With slur only or beam only, it engraves correctly.

Is this a known issue? Should I be coding it differently? The code used is shown below:

\version "2.21.7"

\new Staff \relative c'' { \time 3/4
    d4. d8 \tupletUp \tuplet 3/2 { d([ e]) c } | b2 b8.([ a16]) | g2.
  }
\addlyrics {
  \lyricmode { Here is some text to pon -- der. }
}

--
Marc Shepherd

Hello,

Why do you force the slur direction up? LilyPond will try to do the
best job, but it cannot always get to understand your intent with
only partial information. Either:

- Leave the default.

\version "2.23.0"
\relative c'' {
  \time 3/4
  d4. d8
  \tuplet 3/2 {
    d([ e]) c
  }
  |
  b2 b8.([ a16]) |
  g2.
}

- Tell it the slur should be down.

\relative c'' {
  \time 3/4
  d4. d8
  \tupletUp
  \tuplet 3/2 {
   \slurDown d([ e]) c
  }
  |
  b2 b8.([ a16]) |
  g2.
}

- Adjust the slur manually.

\relative c'' {
  \time 3/4
  d4. d8
  \tupletUp
  \tuplet 3/2 {
    d\shape #'((0.2 . -0.4) (0.2 . -1) (-0.2 . -1.3) (0 . -1.2)) ([ e]) c
  }
  |
  b2 b8.([ a16]) |
  g2.
}

Best regards,
Jean


reply via email to

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