Jump to content

Changing the breath mark symbol

From LilyPond wiki
Revision as of 22:37, 26 October 2025 by Jean Abou Samra (talk | contribs) (Import snippet from LSR)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The glyph of the breath mark can be tuned by overriding the text property of the BreathingSign layout object with any markup text.

\version "2.24.0"

\relative c'' {
  c2
  \override BreathingSign.text = 
    \markup { \musicglyph "scripts.rvarcomma" }
  \breathe
  d2
}