lilypond-user
[Top][All Lists]
Advanced

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

Re: Tenuto marking too close to note


From: Vaughan McAlley
Subject: Re: Tenuto marking too close to note
Date: Wed, 29 Dec 2021 14:22:25 +1100

On Wed, 29 Dec 2021 at 12:48, Erika Pirnes <erika.pirnes@hotmail.com> wrote:
>
> Hi,
>
> I would like to have the tenuto mark a bit farther away from the note. I had a similar issue with tuplet numbers and then "\override TupletNumber.Y-offset = #-2.5" fixed the issue. I don't know what I should replace "TupletNumber" by in the case of tenuto lines.
>
> Minimal example here:
>
> \version "2.18.2"
>
> \new Staff {
>   \relative c'' {\time 3/4 a g e--}
> }
>
> Thank you!
> Erika

Oops, reposting to the list…

Hi Erika,

Yes, I have always found tenutos to be a bit close. This code also “fixes” staccato positioning, which hopefully you want as well:

\version "2.18.2"

\layout {
  \context {
    \Voice
    \override Script.padding = #0.525
  }
}

\new Staff {
  \relative c'' {
    \time 3/4 a g e--
    a g e-.
  }
}

%% Vaughan

reply via email to

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