lilypond-user
[Top][All Lists]
Advanced

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

Re: Re: Breath with fermata


From: Pierre Perol-Schneider
Subject: Re: Re: Breath with fermata
Date: Mon, 8 Jun 2020 18:25:08 +0200

Hi Mats,

Le lun. 8 juin 2020 à 16:57, Mats Bengtsson <mats.bengtsson@ee.kth.se> a écrit :
 
Why not use the breath mark that LilyPond uses by default, instead of
the textual comma sign: \musicglyph "scripts.rcomma" ?
 
Or simply "comma"?

\version "2.20.0"

breatheWithFermata =
  #(define-music-function (offs) (number?)
    #{
      \once\override BreathingSign.Y-offset = $offs
      \once\override BreathingSign.text = \markup
        \override #'(baseline-skip . .8)
        \center-column { \musicglyph "scripts.ufermata" \musicglyph "comma" }
      \breathe
    #})

{
  c'2.
  % construct the symbol
  \breatheWithFermata #3.7
   c'4
}

Cheers,
Pierre


reply via email to

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