Jump to content

Changing the breath mark symbol: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
The glyph of the breath mark can be tuned by overriding the <code>text</code> property of the <code>BreathingSign</code> layout object with any markup text.
The glyph of the breath mark can be tuned by overriding the <code>text</code> property of the <code>BreathingSign</code> layout object with any markup text.


<lilypond version="2.24.0">
<lilypond version="2.24">
\relative c'' {
\relative c'' {
   c2
   c2

Revision as of 18:45, 16 November 2025

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"

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