I guess what you are looking for is the brassBend glyph defined in SMuFL compliant fonts like Bravura or Ekmelos <http://www.ekmelic-music.org/en/extra/ekmelos.htm> 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 gehent...@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