lilypond-user
[Top][All Lists]
Advanced

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

Tuplets up and down at the same musical moment


From: Andrew Bernard
Subject: Tuplets up and down at the same musical moment
Date: Wed, 16 Oct 2019 22:18:35 +1100

Pardon this somewhat strange question. The following MWE showing how to tweak tuplet brackets up and down at the same musical moment works perfectly fine (!). But in the context of my larger score the inner bracket refuses to move with the tweak. I can't provide a minimal example for the error because it only occurs in the full score.

What would cause something like this to fail? [A bug? My stupidity? I don't know.]

Using 2.19.83.

%====
\version "2.19.83"

% tuplets up and down at same musical moment

treble = {
  \time 1/4
  \override TupletBracket.bracket-visibility = ##t
  \tupletUp
  \tuplet 5/4 {
    c''16
    \tupletDown
    \tuplet 3/2 { c'' c'' c'' } c'' c''
  } |
  \tupletDown
  \tuplet 5/4 {
    \tweak TupletBracket.direction #UP
    \tuplet 3/2 { c''16  c'' c'' } c'' c'' c''
  } |

}

bass = {
  \clef bass
  \override TupletBracket.bracket-visibility = ##t

  \tweak TupletBracket.direction #UP
  \tuplet 5/4 {
    \tweak direction #DOWN
    \tuplet 5/4 { f,,32 g,, bes,, b,, c, } ees,8.^> ^~
  } |
  ees,1 |

}

\score {
  <<
    \new Staff { \treble }
    \new Staff { \bass }
  >>
  \layout {}
}

%====

Andrew


reply via email to

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