lilypond-user
[Top][All Lists]
Advanced

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

Re: vertical distance of articulations


From: address@hidden
Subject: Re: vertical distance of articulations
Date: Sat, 9 Feb 2013 19:12:46 +0100

On 9 févr. 2013, at 16:12, Alex Voice <address@hidden> wrote:

> I would like more space between note-head / end of a stem and tenuto/staccato/portato-marks. How to get that?

Werner,
The following works, with adaptation according to the stem direction:

\version "2.16.2"
\relative c'' 
{
c4-. r
  \once \override Script #'extra-offset = #'(0 . 0.1)
c4-. r
}


Even though it gets the job done, extra-offset bypasses the spacing engine entirely, which can cause horizontal and vertical collisions.

Try:

{
        c4-. r
        \once \override Script #'padding = #5
        c4-. r
}

Cheers,
MS 

reply via email to

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