Jump to content

Proportional spacing: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
Proportional notation can be created by setting <code>proportionalNotationDuration</code>. Notes will be spaced proportional to the distance for the given duration.
Proportional notation can be created by setting <code>proportionalNotationDuration</code>. Notes will be spaced proportional to the distance for the given duration.


<lilypond version="2.24.0">
<lilypond version="2.24">
%% http://lsr.di.unimi.it/LSR/Item?id=228
%% http://lsr.di.unimi.it/LSR/Item?id=228



Revision as of 18:56, 16 November 2025

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

\version "2.24"

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