Jump to content

Changing the breath mark symbol: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
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
Line 11: Line 11:
</lilypond>
</lilypond>


[[Category:Expressive marks]]
[[Category:Expressive marks]]
[[Category:Expressive marks]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]

Latest revision as of 13:36, 3 December 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
}