> Hi!
> 
> Can someone tell me what the \property call is to change the
> default distance of "Ped" and "*" (\sustaindown \sustainup) from
> the staff/voice they're attached to?  Can't seem to find this is
> the documents.

It's supposed to be the property Voice.sustainPedalPadding,
but it doesn't seem to work. Bug?!


> Also, while I'm at it, I have a question.  What are these pound
> signs (#) I've started seeing scattered about in \input\test
> since I upgraded from 1.2.17 to 1.3.75?  For example, while
> checking slur-attachment.ly (those default slurs through note
> stems are awful!), I see:
> 
>       \property Voice.slurEndAttachment = ##f
>       \property Voice.slurBeginAttachment = #'stem

Property values are now given in Scheme (a LISP dialect).
The '#' sign tells Lilypond that the next character is the
start of a Scheme expression. For numerical values and strings
there's no need to add the '#', but it doesn't hurt.
Boolean values in Scheme are given as #t (true) and #f (false), 
respectively. Since the first '#' is for Lilypond, you have to
write them as ##t and ##f.

  /Mats

Reply via email to