|
From: | Mats Bengtsson |
Subject: | Re: remove "tr" from TrillSpanner |
Date: | Wed, 4 Sep 2024 17:53:29 +0200 |
User-agent: | Mozilla Thunderbird |
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
[Prev in Thread] | Current Thread | [Next in Thread] |