Jump to content

Extending a trill spanner: Difference between revisions

From LilyPond wiki
m Undo revision 5465 by Rudi Guggt (talk)
Tag: Undo
Line 2: Line 2:


To do this, the <code>springs-and-rods</code> property should be set to <code>ly:spanner::set-spacing-rods</code>.
To do this, the <code>springs-and-rods</code> property should be set to <code>ly:spanner::set-spacing-rods</code>.
See also [[Extending a TrillSpanner (2)]].


<lilypond version="2.24">
<lilypond version="2.24">

Revision as of 12:46, 8 December 2025

For TrillSpanner grobs, the minimum-length property becomes effective only if the set-spacing-rods procedure is called explicitly.

To do this, the springs-and-rods property should be set to ly:spanner::set-spacing-rods.

\version "2.24"

\relative c' {
  \key c\minor
  \time 2/4
  c16( as') c,-. des-.
  \once\override TrillSpanner.minimum-length = #15
  \once\override TrillSpanner.springs-and-rods = #ly:spanner::set-spacing-rods
  \afterGrace es4
  \startTrillSpan { d16[( \stopTrillSpan es)] }
  c( c' g es c g' es d
  \hideNotes
  c8)
}