On Wed, 29 Dec 2021 at 12:48, Erika Pirnes <erika.pir...@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