lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: remove "tr" from TrillSpanner


From: Paul Scott
Subject: Re: remove "tr" from TrillSpanner
Date: Wed, 4 Sep 2024 09:22:48 -0700
User-agent: Mozilla Thunderbird

Thank you, Mats,

Paul

On 9/4/24 8:53 AM, Mats Bengtsson wrote:


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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]