bug-lilypond
[Top][All Lists]
Advanced

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

Re: Proportional spacing handles skips incorrectly


From: Graham Percival
Subject: Re: Proportional spacing handles skips incorrectly
Date: Wed, 06 Dec 2006 17:57:02 -0800
User-agent: Thunderbird 1.5.0.8 (Macintosh/20061025)

Thanks,
http://code.google.com/p/lilypond/issues/detail?id=169

- Graham

Trevor Bača wrote:
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 %%%



------------------------------------------------------------------------

_______________________________________________
bug-lilypond mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/bug-lilypond





reply via email to

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