On Thu, 24 Mar 2022 at 11:05, Molly Preston <[email protected]>
wrote:
> Is there any way of changing the angle of tremolo markings?
>
> \version "2.22.1"
>
> \repeat tremolo 16 { <ais'' b'' > 32 e'' 32 }
>
> I am wondering if there is a way to get the tremolo marking to be angled
> instead of straight?
>
> -Molly
>
It looks like the beams are looking for stems to attach on to, but without
the stems they stay flat. This seems to work:
\version "2.22.1"
{
% This brings the left side up 0.5 staff spaces
\once \override Beam.positions = #'(0.5 . 0.0)
\repeat tremolo 16 { <ais'' b'' > 32 e'' 32 }
}
Vaughan