Jump to content

Non-stretchable gracenote groups

From LilyPond wiki
Revision as of 22:56, 21 November 2025 by Lemzwerg (talk | contribs)

For some instruments such as bagpipes it is desirable to use groups of several gracenotes that do not stretch with the normal music. This can be achieved by setting the GraceSpacing spacing-increment to zero or to a small value.

\version "2.24"

%% http://lsr.di.unimi.it/LSR/Item?id=740

%here starts the snippet:

\relative c' {
  c4 c_"Normally" \grace { g'32[ c, g' c, g'] } c,4 c |
  c4 c c c | \break
  c4 c_"With tweak applied"
  \override Score.GraceSpacing.spacing-increment = #0
  \grace { g'32[ c, g' c, g'] } c,4 c |
  c4 c c c
}

\layout {
  \context {
    \Score
    \omit BarNumber
  }
}

\paper { tagline = ##f }