Jump to content

Proportional spacing

From LilyPond wiki

Proportional notation can be created by setting proportionalNotationDuration. Notes will be spaced proportional to the distance for the given duration.

\version "2.24.0"

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

\relative c''
<<
  \set Score.proportionalNotationDuration = #(ly:make-moment 1/16)
  \new Staff { 
    c8[ c c c c c] c4 c2 r2 
  }
  \new Staff { 
    c2 \tuplet 3/2 { c8 c c } c4 c1 
  }
>>