bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Proportional spacing handles skips incorrectly


From: Trevor Bača
Subject: Proportional spacing handles skips incorrectly
Date: Sun, 3 Dec 2006 10:32:23 -0600

Hi,

Proportional spacing handles skips incorrectly.

The spacing of all three scores below should match. The second score
exhibits incorrect spacing. (The third score shows a workaround using
an invisible rest in place of the skip.)

[The skip spacing bug has been present since the first release of the
proportional notation package and so wasn't introduced in the 2.9
series of releases.]


%%% BEGIN %%%

\version "2.11.0"

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     c'4 % proportional spacing ok here with notes
     c'4
     c'4
  }
}

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     s4  % proportional spacing freaks out here because of the skip -- BUG
     c'4
     c'4
  }
}

\new Score \with {
  propotionalNotationDuration = #(ly:make-moment 1 64)
} {
  \new Staff {
     c'4
     \once \override Rest #'transparent = ##t
     r4  % propotional spacing ok here with notes and rests -- WORKAROUND
     c'4
     c'4
  }
}

%%% END %%%


--
Trevor Bača
address@hidden

reply via email to

[Prev in Thread] Current Thread [Next in Thread]