[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Adjusting `\f`
|
From: |
Werner LEMBERG |
|
Subject: |
Re: Adjusting `\f` |
|
Date: |
Fri, 19 Jan 2024 15:37:00 +0000 (UTC) |
>> "f" = #(make-music 'AbsoluteDynamicEvent
>> 'text "f"
>> 'tweaks '(((DynamicLineSpanner . horizon-padding) . 0.1)))
>>
>> { \stemDown f'4\f f'4\p }
>
>
> This isn't going to work well anyway. Try it on
>
> { \stemDown f'1\p\< \break f'2\f r2 }
>
> There is only one DynamicLineSpanner per sequence of consecutive
> dynamics. A tweak on \f will only affect it if the \f if the first
> element of that sequence.
Yeah, this came to my mind, too. Thanks for confirmation.
> You probably want to change the glyph metadata, or make
> horizon-padding have an effect on DynamicText as well, or something
> in that vein.
Yep.
Werner