On 2024-09-02 20:55, Paul Scott wrote:
How do I remove the "tr" from a TrillSpanner or is there an object
that is just the wavy line? I thought I had done this before but I
didn't see it in NR 1.3.3 or snippets.
In addition to the answers you already received, an alternative
approach to obtain a wavy line is:
\version "2.24.2"
\relative c' {
\override TextSpanner.style = #'trill
c4 \startTextSpan d e c \stopTextSpan
}
or if you want to use it often, you could define your own commands:
\version "2.24.2"
startWavyLine = \tweak style #'trill \startTextSpan
stopWavyLine = \stopTextSpan
\relative c' {
c4 \startWavyLine d e c \stopWavyLine |
}
/Mats