bug-lilypond
[Top][All Lists]
Advanced

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

Re: imperfect convert-ly rules


From: Neil Puttock
Subject: Re: imperfect convert-ly rules
Date: Thu, 18 Nov 2010 20:40:08 +0000

On 18 November 2010 06:21, Keith E OHara <address@hidden> wrote:
> The attached text contains replacement rules for that section that
> have been working for me.

I'm afraid these changes are too naïve, Keith.  Consider the following snippet:

\version "2.13.9"

\paper {
  between-system-padding = 10\mm
  between-system-space = 0
}

\relative c'' {
  c1 \break
  c1
}

To get anything approaching the same appearance in 2.13.39, the
convert rule needs to scale the values in terms of staff-space,
otherwise they're much too large:

\version "2.13.39"

\paper {
  system-system-spacing #'padding = #(/ (* 10 mm) staff-space)
  score-system-spacing #'padding = #(/ (* 10 mm) staff-space)
  system-system-spacing #'space = 0
  score-system-spacing #'space = 0
}

\relative c'' {
  c1 \break
  c1
}

Cheers,
Neil



reply via email to

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