Hi Kieran,
that's perfect. Now that I've seen this kind of construction before in
several contexts, I feel like I should be able to figure it out for
myself. I guess the general procedure is to look up, e.g., trill in the
documentation and find the "Internals Reference" at the bottom of the page
to learn the name of the thing I'm trying to move. best, Jim
On Fri, 5 Aug 2022, Kieren MacMillan wrote:
Hi Jim,
There are many ways to do this, but the easies would probably be to tweak the
extra-offset:
\version "2.20.0"
\relative c'' {
\clef treble
<<
{
\pitchedTrill c'1~\startTrillSpan des c1*7/8 s8 \stopTrillSpan
}
\\
{
\pitchedTrill a1~ -\tweak TrillSpanner.extra-offset #'(0 . 3.5)
\startTrillSpan bes a1*7/8 s8 \stopTrillSpan
}
>>
}
You might also want to use whiteout?
Hope that helps!
Kieren.