lilypond-user
[Top][All Lists]
Advanced

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

Parenthesised articulation issue


From: Andrew Bernard
Subject: Parenthesised articulation issue
Date: Sat, 15 Aug 2015 13:41:01 +1000
User-agent: Microsoft-MacOutlook/0.0.0.150724

Greetings All,

When setting a long tuplet of short note values, the parenthesizing of > is incorrect. It is otherwise correct. The run of 32s seems to be upsetting something in the engine room. Refer to the MWE below.

The error reported is as follows:

programming error: Improbable offset for stencil: inf staff space
Setting to zero.
continuing, cross fingers

Crossing my fingers did not help. :-)

Apologies for the somewhat lengthy MWE, but I only get this problem in this context, and have not found a shorter way to generate the issue.

What am I doing wrong?

Andrew

====

\version "2.19.25"

% stems and staff changes
tsd = { \change Staff = treble \stemDown }
tsu = { \change Staff = treble \stemUp }
bsu = { \change Staff = bass \stemUp }
bsd = { \change Staff = bass \stemDown }

treble = {
  \clef bass
  \time 1/4
  c''16^> d''-\parenthesize^> ees''^- fis''^.
  g4-\parenthesize_.
  g4-\parenthesize ^>
}

bass = {
  \clef bass
  \time 1/4
  c
  <<
    {
      \override Beam.positions = #'(1 . 1)
      \override Stem.length = #16
      \tuplet 15/8 {
        \stemUp
        d,,32 fis,, \tsd gis, b a
        \bsu
        f'
        \tsd
        g a, e,
        \bsu
        c,,
        a,,,-\parenthesize ^> bes,,
        \tsd
        c d'
        \bsd
        fis'-\parenthesize ^>
      } |
    }
    \new Voice
    {
      \stemDown
      \tuplet 3/2 { d,,8[ f' a,,,] } |
    }
  >>
  \oneVoice
}

\score {

  \new PianoStaff
  <<
    \new Staff = "treble" \with {
    }
    { \treble }

    \new Staff = "bass" \with {
    }
    { \bass }
  >>

  \layout {
    \context {
      \Score
      \override Script.font-size = #-2.5
    }
  }
}



reply via email to

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