Jump to content

Setting the minimum length of a slur to separate notes

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

By setting the minimum length of a slur, notes are more separated.

\version "2.24.0"

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

\score{
  \relative c''{
    \time 2/4
    \override Slur.minimum-length = #40
    c( c)
    c~ c\break
  }
}