lilypond-user
[Top][All Lists]
Advanced

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

Re: Bend


From: Thomas Richter
Subject: Re: Bend
Date: Sun, 21 Apr 2024 16:36:32 +0200
User-agent: Mozilla Thunderbird

I guess what you are looking for is the brassBend glyph defined in SMuFL compliant fonts like Bravura or Ekmelos with codepoint U+E5E3.  And it is one of the few musical symbols which is also defined in Unicode with codepoint U+1D189.


%%%%

\version "2.24.0"

#(define-markup-command (brassBend layout props) ()
  #:properties ((font-size 0))
  (interpret-markup layout
    (cons
      `((font-name . "Ekmelos")
        (font-size . ,(+ font-size 5)))
      props)
    (ly:wide-char->utf-8 #xE5E3)))

{ c'' ^ \markup \brassBend }

%%%%

Thomas


Am 20.04.2024 um 22:39 schrieb gehentogo@gmail.com:
Hello friends,

I thought this was recently covered, but I haven't been able to find
what I need.

I'm looking for an articulation to add that will indicate a note is
supposed to bend down, before bending back up again. Usually I see it
looking something like an upside-down fermata, without the dot. I can
do this in Musescore easily, but I've never found a satisfactory bend
like this in Lilypond. I have a script for a scoop, and I know about
\bendBefore, but not this one.

Thanks!

Brian



reply via email to

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