Jump to content

Non-stretchable gracenote groups

From LilyPond wiki
Revision as of 22:46, 26 October 2025 by Jean Abou Samra (talk | contribs) (Import snippet from LSR)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.0"

%% 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 }