Jump to content

Setting the minimum length of a slur to separate notes

From LilyPond wiki
(Redirected from LSR 135)

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